UNPKG
your-bmi
Version:
latest (1.0.10)
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Bmi Calculator to calculate your bmi
your-bmi
/
app.js
5 lines
•
182 B
JavaScript
View Raw
1
2
3
4
5
module
.
exports
.
calcBMI
=
function
(
weightKG,heightM
) {
let
bmi = weightKG/
Math
.
pow
(heightM,
2
);
let
calculatedBMI= bmi.
toFixed
(
2
);
return
`Your Bmi Is:
${calculatedBMI}
`
; }