Skip to content

Commit 892bb92

Browse files
committed
Fixed variable declaration for bodyMassIndex
1 parent 4aa639f commit 892bb92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// It should return their Body Mass Index to 1 decimal place
1616

1717
function calculateBMI(weight, height) {
18-
let = bodyMassIndex = weight / (height * height);
18+
let bodyMassIndex = weight / (height * height);
1919
return bodyMassIndex.toFixed(1);
2020
// return the BMI of someone based off their weight and height
2121
}

0 commit comments

Comments
 (0)