使用和短路

如果第一個引數分別為 true 或 false,則布林運算子||&&短路並且不評估第二個引數。這可以用來寫短條件,如:

var x = 10

x == 10 && alert("x is 10")
x == 10 || alert("x is not 10")