Skip to content

Commit 6e6c005

Browse files
committed
Add BMI function using proper formula and one-decimal formatting
1 parent a2c62d8 commit 6e6c005

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

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 **2);
20+
return bmi.toFixed(1);
1921
}

0 commit comments

Comments
 (0)