Skip to content

Commit 66f1f8d

Browse files
committed
Sprint-2, 3-mandatory-implement, 1-bmi.js done
1 parent abe79e9 commit 66f1f8d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@
1616

1717
function calculateBMI(weight, height) {
1818
// return the BMI of someone based off their weight and height
19+
const bmi = weight / (height * height);
20+
return parseFloat(bmi.toFixed(1));
1921
}

0 commit comments

Comments
 (0)