2017-01-16 119 views
1

嗨我在做什麼這個if語句錯了?我試着做第二個,否則如果最後一個也是另一個,但不能讓警報正確響應。If/Else Statement

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

的感謝!

回答

7

您錯過了變量x的任務。

var x = prompt("Please enter a number"); 
//^^^^^ 

那麼你可以使用parseInt從字符串

x = parseInt(x, 10); 
+0

你是最好的獲得整數!非常感謝! – jamessullivan77