
BMI CALCULATOR FORMULA UPDATE
(B2) Update the calculation accordingly.(B1) Remove unit, there’s no need to check for the unit anymore.Remove measureBMI(), since there’s no use for this function anymore.Update the min/max weight and height accordingly.There is a different set of BMI calculations for children and teens – cdc.gov

Please take note that the above BMI calculation is only accurate for adults. Inside the square where your weight and height meet is a number that is an estimate of your BMI. First, identify your weight (to the nearest 10 pounds) in one of the columns across the top, then move your finger down the column until you come to the row that represents your height. That’s all for this tutorial, and here is a small section on some extras and links that may be useful to you. You can also determine your BMI using the table below. If (bmi fields, does the calculation, and shows the result. IMPERIAL BMI = 703 X MASS (LBS) / HEIGHT (IN) SQUAREīmi = 703 * (weight / (height * height)) METRIC BMI = MASS (KG) / HEIGHT (M) SQUARE Results = document.getElementById("bmi-results") Height = parseInt(document.getElementById("bmi-height").value), Weight = parseInt(document.getElementById("bmi-weight").value), Unit = document.getElementById("bmi-metric").checked, // true = metric, false = imperial Heightu = document.getElementById("bmi-height-unit") Height = document.getElementById("bmi-height"), Weightu = document.getElementById("bmi-weight-unit"), Weight = document.getElementById("bmi-weight"), Let unit = document.getElementById("bmi-metric").checked, Ģ-bmi.js // (A) CHANGE BMI MEASURING SYSTEM

It is defined as a person’s weight in kilograms divided by the square of the person’s height in metres (kg/m2). All right, let us now get started with the basics – Just what is BMI, and how it is calculated.īMI, formerly called the Quetelet index, is a measure for indicating nutritional status in adults.
