JavaScript syntax: Difference between revisions

Content deleted Content added
m If ... else: minor formatting change
m Boolean: rm content specific to C which may or may not relate to JavaScript
Line 145:
! not (logical negation)
</pre>
 
*Logical operators are typically used with Boolean (logical) values; when they are, they return a Boolean value; however, the && and || operators actually return the value of one of the specified operands, so if these operators are used with non-Boolean values, they may return a non-Boolean value.
 
===Bitwise===