Calculator Tools Calculator Tools
Create

Body Mass Index Calculator

Sep 15, 2023

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 }"
}
]