Body Mass Index (BMI) Calculator
Enter your weight and height:
Calculate BMI
const bmi = weight / (height * height); const rounded = bmi.toFixed(2); document.getElementById('result').innerText = 'Your BMI is ' + rounded; }