We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1fcdd4 commit 40156f9Copy full SHA for 40156f9
BMI.js
@@ -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