generated at
JavaScript:operator

Basic Operators
txt
+ Addition - Subtraction * Multiplication / Division (..) Grouping operator % Modulus (remainder) ++ Increment numbers -- Decrement numbers

Comparison Operators
txt
== Equal to === Equal value and equal type != Not equal !== Not equal value or not equal type > Greater than < Less than >= Greater than or equal to <= Less than or equal to ? Ternary operator

Logical Operators
txt
&& Logical and || Logical or ! Logical not

Bitwise Operators
txt
& AND statement | OR statement ~ NOT ^ XOR << Left shift >> Right shift >>> Zero fill right shift


JavaScript-term