Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Microsoft® JScript® ! Operator |
Language Reference Version 1 |
Performs logical negation on an expression.
result = !expressionThe ! operator syntax has these parts:
Part Description result Any variable. expression Any expression.
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.
- If applied to undefined or null expressions, a run-time error is raised.
- Objects are converted to strings.
- Strings are converted to numbers if possible. If not, a run-time error is raised.
- Boolean values are treated as numbers (0 if false, 1 if true).
For the ! operator, if expression is nonzero, result is zero. If expression is zero, result is 1.
Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |