function calculateBmr(){
var weight = prompt("Enter weight in pounds");
var height = prompt("Enter height in inches");
var age = prompt("Enter age");
var bmr = 655 + (4.35 * weight) + (4.7 * height) - (4.7 * age);
alert("Your BMR is" bmr " calories.");
}
calculateBmr();


我的代码有什么问题?它不会运行。

最佳答案

alert("Your BMR is" bmr " calories.");


应该

alert("Your BMR is" + bmr +" calories.");

10-06 00:23