Bmi Calculator

Calculate BMI quickly and privately in your browser.

"
Results will appear here.

For informational purposes only. Not financial advice. Consult a licensed advisor.

This tool runs completely in your browser. No data is transmitted, stored, or logged.

window.calc = function() { const weight = parseFloat(document.querySelector('[data-key="weight"]').value || '0') || 0; const heightFt = parseFloat(document.querySelector('[data-key="heightFt"]').value || '0') || 0; const heightIn = parseFloat(document.querySelector('[data-key="heightIn"]').value || '0') || 0; const heightM = (heightFt * 0.3048) + (heightIn * 0.0254); if (weight <= 0 || heightM <= 0) return 'Enter valid weight and height.'; const bmi = weight / (heightM * heightM); const category = bmi < 18.5 ? 'Underweight' : bmi < 25 ? 'Normal' : bmi < 30 ? 'Overweight' : 'Obese'; return 'BMI: ' + bmi.toFixed(1) + ' | Category: ' + category; };