Skip to content

Commit b78633c

Browse files
committed
correct console log result in 3-mandatory-implement > 1.bmi.js
1 parent 561bd27 commit b78633c

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
@@ -19,4 +19,4 @@ function calculateBMI(weight, height) {
1919
return (weight / height ** 2).toFixed(1);
2020
}
2121

22-
console.log(calculateBMI(105, 1.67)); //38.0
22+
console.log(calculateBMI(105, 1.67)); //37.6

0 commit comments

Comments
 (0)