The following tables list JScript operators in their respective categories.
Operator | Symbol |
---|---|
Addition | + |
Decrement | |
Division | / |
Increment | ++ |
Modulus | % |
Multiplication | * |
Subtraction | - |
Unary negation | |
Operator | Symbol |
---|---|
Comma | , |
Conditional (Ternary) | ?: |
Equality | == |
Greater than | > |
Greater than or equal to | >= |
Identity | === |
Inequality | != |
Less than | < |
Less than or equal to | <= |
Logical AND | && |
Logical NOT | ! |
Logical Or | || |
Nonidentity | !== |
Operator | Symbol |
---|---|
Bitwise AND | & |
Bitwise Left Shift | << |
Bitwise NOT | ~ |
Bitwise Or | | |
Bitwise Right Shift | >> |
Bitwise XOR | ^ |
Unsigned Right Shift | >>> |