邏輯運算符一些值得注意的地方

console.log(2<5<3) //ture 錯誤,由於2<5 判斷爲true,true 隱式轉換爲1,所以程序判斷爲正確,邏輯判斷錯誤。html 應寫爲:code console.log(2<5 && 5<3); //false
相關文章
相關標籤/搜索