BitNot()

Performs a bitwise logical NOT operation.

BitNot( number=number );

Returns: Number

Argument Description
number
number, required

an integer

Examples

The following code example will output an example numbers returned from the bitNot() function.

writeOutput(bitNot(0));
    writeOutput("<br>");
    writeOutput(bitNot(255));

See also