Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想知道||javascript 中运算符的其他用途,而不仅仅是logical OR!
||
logical OR
谢谢 :)
看看这里,它解释并很好地展示了||javascript 中的用法。
JavaScript 语法中没有逻辑运算符。OR不知道你想问什么,没有代码,但如果你说类似的话:
OR
if (trueText || falseText) // Works if (trueText or falseText) // Doesn't work! Illegal Operator
另请查看此帖子,这将帮助您了解可以使用的所有内容||。