You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Write a program to calculate the mass body index of a person, taken in the person, weight,age and height. */
// but we know BMI = mass/height**2
let age = prompt("Enter your age"); // prompt the user to enter he or she age
let weight= prompt("Enter your weight "); // prompt the user to enter he or she weight
let height= prompt("Enter your height"); // prompt the user to enter he or she height
const BMI = weight / (height ** 2); // formula of Body Mass Index
function bmi() {
return BMI < 18.5 ? `I am ${age} years Underweight` : (BMI < 25 ? `I am ${age} years Normal` : (BMI < 30 ? `I am ${age} years Overweight` : `I am ${age} 232years Obese`)); // Gives us the state of the person weight