Javascript Operators Precedence
| Operator |
Description |
Priority |
| . [] | member | Highest |
| () | call | |
| ! ~ - + ++ -- | negation/increment typeof void delete | |
| * / % | Multiplication, Division, Modulus | |
| + - | Addition, Subtraction | |
| << >> >>> | Bitwise Shift | |
| < <= > >= | Comparison | |
| == != | Equality | |
| & | bitwise-and | |
| ^ | bitwise-xor | |
| | | bitwise-or | |
| && | Logical AND | |
| || | Logical OR | |
| ?: | Conditional | |
| = += -= *= /= %= | Assignment | |
| , | Comma | Lowest |
1 comments:
I have just started learning computer programming. I found this website very informative. It will help me to get some good programming concepts.
Post a Comment