我已经看到打字稿经常修改原始的JavaScript运算符来创建自己的运算符。 为什么会发生这种情况?
我对运营商“或逻辑分配'|'”
的怀疑答案 0 :(得分:1)
' !!'运算符与'!'相同在TypeScript?
没有。没有!!
运营商。
!!
只是两个JavaScript !
运算符。
我对运营商的同样怀疑"或逻辑分配' |'"
|
名为Bitwise OR:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators#Bitwise_OR
||
名为Logical OR:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_Operators#Logical_OR
它们与JavaScript相同