回到课程

或运算的结果是什么?

重要程度: 5

如下代码将会输出什么?

alert( null || 2 || undefined );

结果是 2,这是第一个真值。

alert( null || 2 || undefined );