Microsoft® JScript™
! Operator
Language Reference |
Version 1 |

See Also


Description
Used to perform logical negation on an expression.
Syntax
result = !expression

The ! operator syntax has these parts:

Part Description
result Any variable.
expression Any expression.

Remarks
The following table illustrates how result is determined.

If expression is Then result is
True False
False True

All unary operators, such as the ! operator, evaluate expressions as follows:

The operator is applied to the resulting number.

For the ! operator, if expression is nonzero, result is zero. If expression is zero, result is 1.


© 1997 Microsoft Corporation. All rights reserved.