Weight Calculator

Weight Calculator

function calculateWeight() { const weight = parseFloat(document.getElementById(“weight”).value); const height = parseFloat(document.getElementById(“height”).value) / 100; // Convert height from cm to meters if (isNaN(weight) || isNaN(height) || weight <= 0 || height <= 0) { alert("Please enter valid positive values for weight and height."); return; } const bmi = weight / (height * height); document.getElementById("result").value = bmi.toFixed(2); } function resetWeight() { document.getElementById("weight").value = ""; document.getElementById("height").value = ""; document.getElementById("result").value = ""; }

Leave a Reply

Your email address will not be published. Required fields are marked *