2017-03-16 209 views
-2

我剛開始使用JavaScript,我想幫助這個基本的if/else語句。我相信語法是關閉的?我需要它來閱讀真實。javascript,簡單如果其他語句

if ("Jon".length * 2/(2+1) ===) 
{ 
     console.log("The answer makes sense!") 
} 
else 
{ 
    console.log("Error Error Error") 
} 
+0

如果( 「喬恩」。長度* 2 /(2 + 1)===) { 的console.log( 「答案是有道理的!」 ); } else { console.log('Error Error Error'); } } –

+0

它很接近,但你需要完成if。也許你打算說'if(「Jon」.length * 2 /(2 + 1)=== 2)'? – stackoverfloweth

+1

歡迎來到SO。好的,你有一個if語句,你想檢查什麼條件?如果你在'==='右邊有一個數字,這個表達式將被評估爲真/假,這就是你要找的。問題是這個數字是什麼? – Christos

回答

1

工作代碼爲:

<script> 
if ("Jon".length * 2/(2+1) === 2) 
{ 
    console.log("The answer makes sense!"); //or 
    //alert("The answer makes sense!"); 
} 
else 
{ 
    console.log("Error Error Error"); //or 
    //alert("Error Error Error"); 
} 
</script>