Body Mass Index (BMI) Calculator

Enter your weight and height:


const bmi = weight / (height * height); const rounded = bmi.toFixed(2); document.getElementById('result').innerText = 'Your BMI is ' + rounded; }