Skip to content

Commit 40156f9

Browse files
authored
Create BMI.js
1 parent e1fcdd4 commit 40156f9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

BMI.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function bmiCalculator(weight, height)
2+
{
3+
var bmi = weight / (height *height);
4+
return bmi;
5+
}
6+
7+
var bmi = bmiCalculator(68,1.4);
8+
console.log(bmi);

0 commit comments

Comments
 (0)