BitNot()

edit

Performs a bitwise logical NOT operation.

BitNot( number=number );

Returns: Number

Argument Description
number
number, required
edit

an integer

Examples

edit

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

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

See also