Skip to content

Commit e035be5

Browse files
authored
Implement BMI calculation function
1 parent 6986c8c commit e035be5

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Sprint-3/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 bmi.toFixed(1);
1921
}

0 commit comments

Comments
 (0)