Calories Burned Doing 50 Minutes of Weight Lifting Calculator

Calories Burned Weight Lifting Calculator (50 Mins) :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –label-color: #555; –border-color: #ccc; –card-background: #fff; –shadow-color: rgba(0,0,0,0.1); } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); margin: 0; padding: 20px; line-height: 1.6; } .container { max-width: 960px; margin: 20px auto; background-color: var(–card-background); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px var(–shadow-color); display: flex; flex-direction: column; align-items: center; } h1, h2, h3 { color: var(–primary-color); text-align: center; margin-bottom: 20px; } .calculator-wrapper { width: 100%; max-width: 600px; margin-bottom: 40px; padding: 25px; border: 1px solid var(–border-color); border-radius: 6px; background-color: var(–card-background); box-shadow: 0 2px 8px var(–shadow-color); } .input-group { margin-bottom: 20px; width: 100%; } .input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(–label-color); } .input-group input[type="number"], .input-group select { width: calc(100% – 22px); /* Adjust for padding and border */ padding: 12px; border: 1px solid var(–border-color); border-radius: 4px; font-size: 1rem; box-sizing: border-box; /* Include padding and border in the element's total width and height */ } .input-group input[type="number"]:focus, .input-group select:focus { outline: none; border-color: var(–primary-color); box-shadow: 0 0 0 2px rgba(0, 74, 153, 0.2); } .input-group .helper-text { font-size: 0.85em; color: #777; margin-top: 5px; display: block; } .error-message { color: #dc3545; font-size: 0.85em; margin-top: 5px; display: block; min-height: 1.2em; /* Reserve space for error messages */ } .button-group { display: flex; justify-content: space-between; margin-top: 25px; gap: 10px; } .button-group button, .copy-button { padding: 12px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 1rem; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease; } .btn-primary { background-color: var(–primary-color); color: white; } .btn-primary:hover { background-color: #003366; transform: translateY(-1px); } .btn-secondary { background-color: #6c757d; color: white; } .btn-secondary:hover { background-color: #5a6268; transform: translateY(-1px); } .btn-success { background-color: var(–success-color); color: white; } .btn-success:hover { background-color: #218838; transform: translateY(-1px); } .results-wrapper { width: 100%; max-width: 600px; margin-top: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 6px; background-color: var(–card-background); box-shadow: 0 2px 8px var(–shadow-color); } .results-wrapper h3 { margin-top: 0; color: var(–primary-color); } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed #eee; } .result-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .result-item span:first-child { font-weight: 500; color: var(–label-color); } .result-item span:last-child { font-weight: 600; } #primary-result { font-size: 1.8em; font-weight: bold; color: var(–success-color); text-align: center; margin-bottom: 20px; padding: 15px; background-color: rgba(40, 167, 69, 0.1); border-radius: 4px; } .formula-explanation { font-size: 0.9em; color: #666; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; } .chart-container { width: 100%; max-width: 600px; margin-top: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 6px; background-color: var(–card-background); box-shadow: 0 2px 8px var(–shadow-color); text-align: center; } .chart-container canvas { max-width: 100%; height: auto; } .chart-caption { font-size: 0.9em; color: #666; margin-top: 10px; display: block; } .table-container { width: 100%; max-width: 600px; margin-top: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 6px; background-color: var(–card-background); box-shadow: 0 2px 8px var(–shadow-color); } .table-caption { font-size: 0.9em; color: #666; margin-bottom: 10px; display: block; } table { width: 100%; border-collapse: collapse; margin-top: 15px; } th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; } th { background-color: var(–primary-color); color: white; font-weight: bold; } td { background-color: var(–card-background); } table tr:nth-child(even) td { background-color: #f2f2f2; } .article-content { width: 100%; max-width: 960px; margin: 40px auto; background-color: var(–card-background); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px var(–shadow-color); } .article-content h2, .article-content h3 { text-align: left; margin-top: 30px; } .article-content p, .article-content ul, .article-content ol { margin-bottom: 15px; } .article-content ul { list-style: disc; margin-left: 20px; } .article-content ol { list-style: decimal; margin-left: 20px; } .article-content a { color: var(–primary-color); text-decoration: none; } .article-content a:hover { text-decoration: underline; } .article-content strong { font-weight: bold; } .article-content .variable-table { width: 100%; margin-top: 15px; border-collapse: collapse; } .article-content .variable-table th, .article-content .variable-table td { border: 1px solid #ddd; padding: 8px; text-align: left; } .article-content .variable-table th { background-color: #f8f9fa; color: var(–text-color); } .article-content .faq-item { margin-bottom: 15px; padding: 10px; background-color: var(–background-color); border-left: 3px solid var(–primary-color); border-radius: 4px; } .article-content .faq-item strong { display: block; margin-bottom: 5px; color: var(–primary-color); } .article-content .related-links { margin-top: 30px; padding: 20px; background-color: var(–background-color); border: 1px solid var(–border-color); border-radius: 5px; } .article-content .related-links h3 { text-align: left; margin-top: 0; } .article-content .related-links ul { list-style: none; padding: 0; margin: 0; } .article-content .related-links li { margin-bottom: 10px; } .article-content .related-links a { font-weight: 500; } .article-content .related-links p { font-size: 0.9em; color: #666; margin-top: 3px; } /* Responsive adjustments */ @media (max-width: 768px) { .container { padding: 20px; } .calculator-wrapper, .results-wrapper, .chart-container, .table-container, .article-content { padding: 20px; } .button-group { flex-direction: column; gap: 10px; } .button-group button, .copy-button { width: 100%; } }

Calories Burned Weight Lifting Calculator (50 Mins)

Estimate the calories you burn during a 50-minute weight lifting session. This calculator helps you understand your energy expenditure based on your body weight and the intensity of your workout.

Weight Lifting Calorie Calculator

Enter your weight in kilograms (kg).
Light to Moderate (e.g., 3.0 METs) Moderate to Vigorous (e.g., 4.5 METs) Vigorous (e.g., 6.0 METs) Choose a MET value representing the intensity of your weight lifting.
Enter the duration in minutes. This calculator is pre-set to 50 minutes.

Your Estimated Calorie Burn

— kcal
MET Value Used:
Duration: — minutes
Body Weight: — kg
Formula Used: Calories Burned = MET x Body Weight (kg) x Duration (hours)

Calorie Burn vs. MET Value

Estimated calories burned for 50 minutes of weight lifting at different MET values.
Weight Lifting MET Values Guide
Activity Intensity Typical MET Value Calorie Burn Estimate (for 70kg, 50 min)
Light to Moderate 3.0 — kcal
Moderate to Vigorous 4.5 — kcal
Vigorous 6.0 — kcal

Calories Burned Weight Lifting Calculator (50 Mins)

Understanding the calories you burn during your workouts is crucial for managing your weight, optimizing your fitness routine, and ensuring your energy intake aligns with your expenditure. Weight lifting, a fundamental component of a balanced fitness regimen, is particularly effective for building muscle and boosting metabolism. Our Calories Burned Weight Lifting Calculator (50 Mins) is designed to give you a clear estimate of the energy your body expends during a typical 50-minute weight training session.

What is the Calories Burned Weight Lifting Calculator (50 Mins)?

The Calories Burned Weight Lifting Calculator (50 Mins) is a specialized tool that estimates the number of calories an individual expends during a 50-minute session of weight lifting. It takes into account your body weight and the intensity level of your workout, typically represented by a Metabolic Equivalent of Task (MET) value. This calculator is particularly useful for individuals who want to accurately track their calorie expenditure from strength training sessions of a specific duration.

Who should use it?

  • Individuals engaged in regular weight lifting routines.
  • Fitness enthusiasts tracking their total daily energy expenditure.
  • People aiming for weight loss or weight gain, who need precise calorie information.
  • Athletes looking to fine-tune their nutrition and training.

Common misconceptions:

  • Myth: Weight lifting burns very few calories compared to cardio. Reality: While cardio might burn more calories *during* the session, weight lifting significantly boosts resting metabolism due to muscle gain, leading to more calories burned over time.
  • Myth: All weight lifting sessions burn the same amount of calories. Reality: The intensity, rest periods between sets, and type of exercises performed greatly influence calorie expenditure. Higher intensity and shorter rest periods burn more calories.
  • Myth: MET values are universal and don't change. Reality: MET values are averages. Individual physiological differences and specific exercise variations can slightly alter actual energy expenditure.

Calories Burned Weight Lifting (50 Mins) Formula and Mathematical Explanation

The calculation for calories burned during physical activity is generally based on the MET (Metabolic Equivalent of Task) system. The formula used by this calculator is a standard and widely accepted method:

Calories Burned = MET x Body Weight (kg) x Duration (hours)

Variable Explanations:

To understand the formula, let's break down each component:

  • MET (Metabolic Equivalent of Task): This represents the ratio of the metabolic rate during an activity compared to the metabolic rate during rest. A MET value of 1 is equivalent to the energy expenditure of sitting quietly. Higher MET values indicate more strenuous activities. For weight lifting, MET values typically range from 3.0 (light) to 6.0 (vigorous), with variations depending on the specific exercises and rest periods.
  • Body Weight (kg): Your total body mass in kilograms. Energy expenditure is directly proportional to body weight; heavier individuals will generally burn more calories than lighter individuals performing the same activity for the same duration.
  • Duration (hours): The total time spent performing the activity, converted into hours. If your activity is 50 minutes, you would convert this to 50/60 hours.

Variables Table:

Variable Meaning Unit Typical Range for Weight Lifting
MET Metabolic Equivalent of Task Unitless ratio 3.0 (Light) to 6.0 (Vigorous)
Body Weight Mass of the individual Kilograms (kg) Typically 40 kg to 150+ kg
Duration Time spent performing the activity Hours (calculated from minutes) Pre-set to 50 minutes (0.833 hours) in this calculator

The calculator uses your inputs for body weight and selected MET value, then converts the fixed 50-minute duration into hours (50/60) to apply the formula accurately.

Practical Examples (Real-World Use Cases)

Let's illustrate how the calculator works with two realistic scenarios:

Example 1: A Moderately Fit Individual

  • Scenario: Sarah weighs 65 kg and completes a 50-minute weight lifting session that involves compound movements and short rest periods, which she rates as moderately vigorous.
  • Inputs:
    • Body Weight: 65 kg
    • MET Value: 4.5 (Moderate to Vigorous)
    • Duration: 50 minutes
  • Calculation:
    • Duration in hours = 50 / 60 = 0.833 hours
    • Calories Burned = 4.5 METs * 65 kg * 0.833 hours
    • Calories Burned ≈ 243.5 kcal
  • Interpretation: Sarah burned approximately 243.5 calories during her 50-minute weight lifting workout. This information can help her adjust her post-workout meal or track her daily calorie deficit for weight management.

Example 2: A Heavier Individual with Vigorous Training

  • Scenario: Mark weighs 90 kg and engages in intense weight lifting for 50 minutes, focusing on heavy lifts with minimal rest between sets.
  • Inputs:
    • Body Weight: 90 kg
    • MET Value: 6.0 (Vigorous)
    • Duration: 50 minutes
  • Calculation:
    • Duration in hours = 50 / 60 = 0.833 hours
    • Calories Burned = 6.0 METs * 90 kg * 0.833 hours
    • Calories Burned ≈ 449.8 kcal
  • Interpretation: Mark burned approximately 450 calories in his 50-minute vigorous weight lifting session. This higher burn rate is due to his greater body mass and the intensity of his workout. This is useful for his bulking phase to ensure adequate caloric intake.

These examples highlight how both body weight and workout intensity significantly impact the total calories burned during weight lifting. For more insights, explore the benefits of strength training.

How to Use This Calories Burned Weight Lifting Calculator (50 Mins)

Using this calculator is straightforward and designed to provide quick, accurate estimates. Follow these simple steps:

  1. Enter Your Body Weight: In the "Your Body Weight" field, input your current weight in kilograms (kg).
  2. Select MET Value: Choose the option that best describes the intensity of your 50-minute weight lifting session from the "Weight Lifting MET Value" dropdown.
    • Light to Moderate: Exercises with longer rest periods, lighter weights, or focus on form.
    • Moderate to Vigorous: Exercises with moderate weights, shorter rest periods, or circuit-style training.
    • Vigorous: High-intensity lifting, minimal rest, or supersets.
  3. Duration: The duration is pre-set to 50 minutes. You can adjust this, but the calculator's primary function is for this specific duration.
  4. View Results: As you input your details, the "Estimated Calorie Burn" will update automatically. You'll also see the specific MET value, duration, and body weight used in the calculation.
  5. Interpret the Results: The primary result shows your estimated total calorie burn for the 50-minute session. Use this to inform your nutrition and training plans.
  6. Use Additional Features:
    • Reset Button: Click this to revert all fields to their default values.
    • Copy Results Button: Copies the main result, intermediate values, and key assumptions to your clipboard for easy sharing or note-taking.

How to read results: The main output is your estimated calorie burn in kilocalories (kcal). Intermediate values confirm the inputs used for accuracy. The formula explanation clarifies the calculation method.

Decision-making guidance: If your goal is weight loss, this figure helps you understand the caloric deficit created by your workout. If you're aiming for muscle gain, it informs how many additional calories you might need to consume to support muscle protein synthesis and recovery. Understanding your daily calorie needs is essential.

Key Factors That Affect Calories Burned Weight Lifting Results

While the calculator provides a reliable estimate, several factors can influence the actual calories burned during a weight lifting session. Understanding these nuances allows for even more precise personal tracking:

  1. Intensity and Effort: This is the most significant factor. Lifting heavier weights with shorter rest periods between sets (high intensity) burns more calories than lighter weights with longer rests. The MET value selected in the calculator aims to capture this.
  2. Muscle Mass: Individuals with higher muscle mass have a higher resting metabolic rate. While this calculator focuses on activity-specific burn, overall muscle mass increases your daily calorie expenditure even at rest, contributing to a greater *total* calorie burn over 24 hours. Consistent weight training builds this crucial muscle.
  3. Exercise Selection: Compound movements (like squats, deadlifts, bench presses) that engage multiple muscle groups simultaneously tend to burn more calories than isolation exercises (like bicep curls).
  4. Rest Periods: Shorter rest intervals between sets keep the heart rate elevated, increasing overall calorie expenditure during the 50-minute session.
  5. Individual Metabolism: While MET values are standardized, each person's metabolic rate can vary due to genetics, age, sex, and hormonal factors. This calculator uses averages.
  6. Workout Structure: A circuit training approach or supersets within your weight lifting routine can significantly increase the cardiovascular demand and thus calorie burn compared to traditional set-and-rest protocols.
  7. Post-Exercise Oxygen Consumption (EPOC): Weight lifting, especially high-intensity training, creates an "afterburn" effect where your metabolism remains elevated for hours post-workout as your body recovers. This calculator primarily estimates calories burned *during* the 50 minutes, but the EPOC effect adds to the total daily expenditure.

For a broader perspective on fitness metrics, consider learning about body fat percentage.

Frequently Asked Questions (FAQ)

Q1: How accurate is this calculator?

A1: The calculator provides a good estimate based on established MET values and the provided inputs. However, individual metabolic rates, specific exercise execution, and precise rest times can cause slight variations. It's a tool for guidance, not absolute precision.

Q2: Should I use kilograms or pounds for body weight?

A2: The calculator is designed to use kilograms (kg) for body weight. Ensure your input is in kg for accurate results.

Q3: What's the difference between light, moderate, and vigorous MET values for weight lifting?

A3: Light MET values (e.g., 3.0) represent workouts with longer rest periods and lighter weights. Moderate-to-vigorous (e.g., 4.5) implies shorter rests and heavier weights. Vigorous (e.g., 6.0) signifies intense effort with minimal rest, often involving complex or high-load exercises.

Q4: Can I use this calculator for durations other than 50 minutes?

A4: While the calculator is pre-set for 50 minutes, you can manually adjust the "Workout Duration" input. The formula will recalculate based on your new duration.

Q5: Does weight lifting burn more calories than cardio?

A5: Typically, cardio exercises burn more calories *during* the session itself. However, weight lifting builds muscle mass, which increases your resting metabolic rate, meaning you burn more calories even when you're not exercising. Both are vital for overall health and calorie management.

Q6: How does adding muscle affect calorie burn?

A6: Muscle tissue is metabolically more active than fat tissue. The more muscle you have, the higher your resting metabolic rate, leading to more calories burned throughout the day, not just during exercise. This is why building muscle is key for long-term weight management.

Q7: Are MET values the same for men and women?

A7: Yes, MET values are standardized and do not differentiate between sexes. They represent the energy cost of the activity itself. Differences in calorie burn between men and women performing the same activity are primarily due to variations in body weight and body composition.

Q8: How often should I weight lift to see results?

A8: For general fitness and muscle building, aiming for 2-4 sessions of weight lifting per week is often recommended. Consistency is key. Consult with a fitness professional for a personalized recommendation based on your goals and fitness level.

var chartInstance = null; // Declare chartInstance globally function calculateCalories() { var bodyWeightInput = document.getElementById("bodyWeight"); var metValueSelect = document.getElementById("metValue"); var durationInput = document.getElementById("duration"); var bodyWeightError = document.getElementById("bodyWeightError"); var metValueError = document.getElementById("metValueError"); var durationError = document.getElementById("durationError"); var primaryResult = document.getElementById("primary-result"); var resultMetValue = document.getElementById("resultMetValue"); var resultDuration = document.getElementById("resultDuration"); var resultBodyWeight = document.getElementById("resultBodyWeight"); // Clear previous errors bodyWeightError.textContent = ""; metValueError.textContent = ""; durationError.textContent = ""; var isValid = true; // Validate Body Weight var bodyWeight = parseFloat(bodyWeightInput.value); if (isNaN(bodyWeight) || bodyWeight <= 0) { bodyWeightError.textContent = "Please enter a valid body weight greater than 0."; isValid = false; } // Validate Duration var duration = parseFloat(durationInput.value); if (isNaN(duration) || duration <= 0) { durationError.textContent = "Please enter a valid duration greater than 0."; isValid = false; } if (!isValid) { primaryResult.textContent = "– kcal"; resultMetValue.textContent = "–"; resultDuration.textContent = "– minutes"; resultBodyWeight.textContent = "– kg"; updateChart([0, 0, 0]); // Reset chart data updateTable([0, 0, 0]); // Reset table data return; } var metValue = parseFloat(metValueSelect.value); var durationHours = duration / 60; var caloriesBurned = metValue * bodyWeight * durationHours; var roundedCalories = caloriesBurned.toFixed(1); primaryResult.textContent = roundedCalories + " kcal"; resultMetValue.textContent = metValue.toFixed(1); resultDuration.textContent = duration + " minutes"; resultBodyWeight.textContent = bodyWeight.toFixed(1) + " kg"; // Update table rows with calculations based on default weight for illustration var defaultWeightForTable = 70.0; // Consistent weight for table comparison var tableCal1 = (3.0 * defaultWeightForTable * (50 / 60)).toFixed(1); var tableCal2 = (4.5 * defaultWeightForTable * (50 / 60)).toFixed(1); var tableCal3 = (6.0 * defaultWeightForTable * (50 / 60)).toFixed(1); updateTable([tableCal1, tableCal2, tableCal3]); // Update chart var chartData = [ { met: 3.0, cal: (3.0 * bodyWeight * durationHours).toFixed(1) }, { met: 4.5, cal: (4.5 * bodyWeight * durationHours).toFixed(1) }, { met: 6.0, cal: (6.0 * bodyWeight * durationHours).toFixed(1) } ]; updateChart(chartData); } function updateChart(data) { var ctx = document.getElementById('calorieBurnChart').getContext('2d'); // Destroy previous chart instance if it exists if (chartInstance) { chartInstance.destroy(); } chartInstance = new Chart(ctx, { type: 'bar', // Changed to bar chart for better visual comparison data: { labels: ['Light/Moderate', 'Moderate/Vigorous', 'Vigorous'], datasets: [{ label: 'Estimated Calories Burned (kcal)', data: [data[0].cal, data[1].cal, data[2].cal], backgroundColor: [ 'rgba(0, 74, 153, 0.6)', 'rgba(0, 123, 255, 0.6)', 'rgba(40, 167, 69, 0.6)' ], borderColor: [ 'rgba(0, 74, 153, 1)', 'rgba(0, 123, 255, 1)', 'rgba(40, 167, 69, 1)' ], borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: false, scales: { y: { beginAtZero: true, title: { display: true, text: 'Calories Burned (kcal)' } }, x: { title: { display: true, text: 'Workout Intensity (MET)' } } }, plugins: { legend: { display: false // Hide legend as labels are on X-axis }, tooltip: { callbacks: { label: function(context) { var label = context.dataset.label || ''; if (label) { label += ': '; } if (context.parsed.y !== null) { label += context.parsed.y + ' kcal'; } return label; } } } } } }); } function updateTable(data) { document.getElementById("tableRowCal1").textContent = data[0] + " kcal"; document.getElementById("tableRowCal2").textContent = data[1] + " kcal"; document.getElementById("tableRowCal3").textContent = data[2] + " kcal"; } function resetCalculator() { document.getElementById("bodyWeight").value = ""; document.getElementById("metValue").value = "3.0"; document.getElementById("duration").value = "50"; document.getElementById("bodyWeightError").textContent = ""; document.getElementById("metValueError").textContent = ""; document.getElementById("durationError").textContent = ""; document.getElementById("primary-result").textContent = "– kcal"; document.getElementById("resultMetValue").textContent = "–"; document.getElementById("resultDuration").textContent = "– minutes"; document.getElementById("resultBodyWeight").textContent = "– kg"; updateChart([0, 0, 0]); // Reset chart data updateTable(["– kcal", "– kcal", "– kcal"]); // Reset table data } function copyResults() { var primaryResult = document.getElementById("primary-result").textContent; var resultMetValue = document.getElementById("resultMetValue").textContent; var resultDuration = document.getElementById("resultDuration").textContent; var resultBodyWeight = document.getElementById("resultBodyWeight").textContent; var assumptions = "Key Assumptions:\n"; assumptions += "- MET Value Used: " + resultMetValue + "\n"; assumptions += "- Duration: " + resultDuration + "\n"; assumptions += "- Body Weight: " + resultBodyWeight + "\n"; assumptions += "- Formula: Calories Burned = MET x Body Weight (kg) x Duration (hours)"; var textToCopy = "Estimated Calories Burned: " + primaryResult + "\n\n" + assumptions; navigator.clipboard.writeText(textToCopy).then(function() { // Optional: Provide user feedback like a temporary message alert("Results copied to clipboard!"); }).catch(function(err) { console.error('Failed to copy results: ', err); alert("Failed to copy results. Please copy manually."); }); } // Initial calculation on page load document.addEventListener('DOMContentLoaded', function() { calculateCalories(); // Ensure chart is drawn on initial load with default values var defaultBodyWeight = parseFloat(document.getElementById("bodyWeight").value) || 70; // Use default if input is empty var defaultMetValue = parseFloat(document.getElementById("metValue").value) || 3.0; var defaultDuration = parseFloat(document.getElementById("duration").value) || 50; var defaultDurationHours = defaultDuration / 60; var initialChartData = [ { met: 3.0, cal: (3.0 * defaultBodyWeight * defaultDurationHours).toFixed(1) }, { met: 4.5, cal: (4.5 * defaultBodyWeight * defaultDurationHours).toFixed(1) }, { met: 6.0, cal: (6.0 * defaultBodyWeight * defaultDurationHours).toFixed(1) } ]; updateChart(initialChartData); var defaultWeightForTable = 70.0; // Consistent weight for table illustration var tableCal1 = (3.0 * defaultWeightForTable * (50 / 60)).toFixed(1); var tableCal2 = (4.5 * defaultWeightForTable * (50 / 60)).toFixed(1); var tableCal3 = (6.0 * defaultWeightForTable * (50 / 60)).toFixed(1); updateTable([tableCal1, tableCal2, tableCal3]); });

Leave a Comment