Skip to content

Commit 0466037

Browse files
committed
3-mandatory-implement - 1-bmi.js
Added in the code as requested.
1 parent bada0ad commit 0466037

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

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

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

1717
function calculateBMI(weight, height) {
18-
// return the BMI of someone based off their weight and height
18+
let squaring=height * height;
19+
return (70 / squaring).toFixed(2);
20+
1921
}
22+
23+
console.log(calculateBMI(100, 1.85))

0 commit comments

Comments
 (0)