Skip to content

Commit 92453f8

Browse files
refactor: remove debug console log
1 parent 53c6eb7 commit 92453f8

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
@@ -18,5 +18,5 @@ function calculateBMI(weight, height) {
1818
// return the BMI of someone based off their weight and height
1919
let bmi = weight / (height * height);
2020
return Number(bmi.toFixed(1));}
21-
console.log(calculateBMI(88, 1.78)); //27.8
21+
2222

0 commit comments

Comments
 (0)