Showing posts with label JavaScript » Operator. Show all posts
Showing posts with label JavaScript » Operator. Show all posts

Monday, June 11, 2012

>>>= (Bitwise Zero - fill Right Shift Assignment)

&= (Bitwise AND Assignment)

|= (Bitwise OR Assignment)

^= (Bitwise Exclusive OR Assignment)

>>= (Shift-Right With Sign Assignment)

<<= (Shift-Left Assignment)

%= (Modulus Assignment)

/= (Division Assignment)

*= (Multiplication Assignment)

-= (Subtraction Assignment)

+= (Addition Assignment or Concatenation Assignment)

= (Assignment)

++ and --

% (Modulus)

/ (Division)

* (Multiplication)

- (Subtraction or Unary negation)

+ (Addition or Concatenation)

>= (Greater Than or Equal to)

<= (Less Than or Equal to)