Body Mass Index Calculator
About this app
Calculate your Body Mass Index (BMI) using both the metric and imperial unit systems.
[ { "search": "var bmi;\n if (unitSystem === \"metric\") {\n bmi = weight / Math.pow(height / 100, 2);\n } else {\n bmi = (weight / Math.pow(height / 100, 2)) * 703;\n }", "replace": "var bmi;\n if (unitSystem === \"metric\") {\n bmi = weight / Math.pow(height / 100, 2);\n } else {\n bmi = (weight / Math.pow(height / 2.54, 2)) * 703;\n }" } ]
Related apps
Put this on your site
Source
[
{
"search": "var bmi;\n if (unitSystem === \"metric\") {\n bmi = weight / Math.pow(height / 100, 2);\n } else {\n bmi = (weight / Math.pow(height / 100, 2)) * 703;\n }",
"replace": "var bmi;\n if (unitSystem === \"metric\") {\n bmi = weight / Math.pow(height / 100, 2);\n } else {\n bmi = (weight / Math.pow(height / 2.54, 2)) * 703;\n }"
}
]
NEW APPS
These are apps made by the community!