JavaScript中二元運算符 && 和 ||

網上看到的一個面試題,以下:css 寫出alert(1&&2),alert(1||0)的輸出結果。web alert(1&&2); //2 alert(1||0); //1 輸出結果 2 和 1。面試 知識點:svg &&運算符規則:a&&b,若是 a 爲true,直接返回 b;若是 a 爲false 那麼直接返回 a。spa || 運算符規則:a || b,若是 a 爲true,直接返回 a;若
相關文章
相關標籤/搜索