The Body Mass Index (BMI) Calculator can be used to calculate BMI values based on their height and weight. BMI is a fairly reliable indicator of body fatness for most people.
Formula:
BMI = (weight) / (height * height)
Here's JavaScript code
function BMI(weight, height) {
return(weight / (height * height));
}
let bmiResult = BMI(57, 1.73736);
console.log(bmiResult);
Top comments (7)
173.736m...that is a very tall person! 😜🤣
Especially at 57kg, they need to lose some weight!
0.0018884053362648637 BMI, I think they need to put some on...
I was kidding 😋 At 57kg very few people should need to lose weight!
I was trying to work out how thin they would have to be to be 173m tall and 57kg but I couldn't quite get it right, I think it is about 0.57cm wide! 🤣
no sir 1.73736m and 173.736cm
Let's do some maths 😁
This is presuming average human density and a 'normal' shoulder width of 41cm.
😅
Aww now our thread makes no sense as OP has fixed it 🤣🤣
Love the fact you took the time to work it out properly!
lets see bro