Skip to content

Commit 9e4433a

Browse files
committed
fix: Account for input type.
cast to Number, or return NaN if not posible to do so.
1 parent f1bd811 commit 9e4433a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

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

1717
function calculateBMI(weight, height) {
18-
return (weight / height ** 2).toFixed(1);
18+
return (Number(weight) / Number(height) ** 2).toFixed(1);
1919
}
20+
21+
console.log(calculateBMI("12", "aad"));

0 commit comments

Comments
 (0)