Skip to content

Commit a2a0dda

Browse files
committed
updating reviewers comment
1 parent 2eabe8c commit a2a0dda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
function calculateBMI(weight, height) {
1818
// return the BMI of someone based off their weight and height
1919

20-
return Number(weight / (height * height)).toFixed(1);
20+
return Number((weight / (height * height)).toFixed(1));
2121
}

0 commit comments

Comments
 (0)