我对这个if语句做错了什么?香港专业教育学院尝试制作第二个,如果和最后一个也是其他的,但不能得到警报,以正确回应。
prompt("Please enter a number");
if(x < 100) {
alert("variable is less 100")
}
if(x == 100) {
alert("variable is equal to 100!")
}
if(x > 100) {
alert("variable was greater than 100")
}
谢谢!
答案 0 :(得分:7)
您缺少对变量x
的分配。
var x = prompt("Please enter a number");
//^^^^^
然后你可以使用parseInt
从字符串
x = parseInt(x, 10);