Skip to content

Commit 2f8d74e

Browse files
committed
add and explain calculateBMI() function to compute BMI to one decimal place
1 parent 97dc683 commit 2f8d74e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Sprint-2/3-mandatory-implement/1-bmi.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,11 @@
1616

1717
function calculateBMI(weight, height) {
1818
// return the BMI of someone based off their weight and height
19-
}
19+
const bmi = weight / (height * height);
20+
return bmi.toFixed(1);
21+
}
22+
23+
console.log(`Your BMI is ${calculateBMI(68, 1.75)}`);
24+
// How it works: function calculateBMI(weight, height)
25+
// Parameters: weight - number, person's weight in kilograms height - number, person's height in meters
26+
// Returns: the body mass index (BMI), rounded to one decimal place

0 commit comments

Comments
 (0)