Body Mass Index Calculator
function bmiCalc (bmi)
{
wt = prompt("Enter your weight in pounds")
kg = wt/2.2;
ht = prompt("Enter your height in inches")
htm = ht * 0.0254;
bmi=kg/ht^2;
bmi = prompt(bmi);
document.write(bmi);
}
Body Mass Index Calculator
Body Mass Index (BMI) is used as an indicator of total body fat. In
order to calculate your BMI, please input your height and weight.
Height:
Weight:
Click me