home HTML XML DTD CSS Visual Filter JavaScript Java ASP SSI .NET  
JavaScript Reference >
Suggested Reading

Punctuators


tag/attrib/value description
Computational Operators     
+ x21.0  Addition / String concatenation
- x21.0  Unary negation / Subtraction
* x21.0  Multiplication
/ x21.0  Devision
% x21.0  Modulus (Remainder)
++ x21.0  Increment
-- x21.0  Decrement
Comparison Operators     
== x21.0  Equality
!= x21.0  Inequality
< x21.0  Less than
<= x21.0  Less than or equal
> x21.0  Greater than
>= x21.0  Greater than or equal
=== x11.3  Identity / Strict equality
!== x11.3  Nonidentity / Strict inequality
Logical Operators     
! x21.0  Logical negation
&& x21.0  Logical AND
|| x21.0  Logical OR
Bitwise Operators     
~ x21.0  Bitwise NOT
<< x21.0  Left shift
>> x21.0  Sign-propagating right shift
>>> x21.0  Zero-fill right shift
& x21.0  Bitwise AND
| x21.0  Bitwise OR
^ x21.0  Bitwise XOR
Assignment Operators     
= x21.0  Assignment
+= x21.0  Addition assignment / Concatenation assignment
-= x21.0  Subtraction assignment
*= x21.0  Multiplication assignment
/= x21.0  Division assignment
%= x21.0  Modulus assignment
&= x21.0  Bitwise AND assignment
^= x21.0  Bitwise XOR assignment
|= x21.0  Bitwise OR assignment
<<= x21.0  Left shift assignment
>>= x21.0  Sign-propagating right shift assignment
>>>= x21.0  Zero-fill right shift assignment
OP= x    Compound assignment
Miscellaneous Punctuators     
? : x21.0  Trinary (Conditional)
, x 1.0  Comma
{ x   
} x   
( x   
) x   
[ x   
] x   
. x   
; x