逻辑或。 如果布尔表达式 exp1 和/或 exp2 为 true,则返回 true。 否则,返回 false。
If exp1 is true, this expression immediately returns true without evaluating exp2, so any side effects of exp2 are not taken into account.
示例:
false || true -> true
false || false -> false
true || whatever -> true(无论什么都不会被评估)