BitAnd()

Performs a bitwise logical AND operation.

BitAnd( number1=number, number2=number );

Returns: Number

Argument Description
number1
number, required

an integer

number2
number, required

an integer

Examples

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

inputValue1 = 5;
    inputValue2 = 255;
    writeOutput(bitAnd(inputValue1, inputValue2));
    writeOutput("<br>");
    inputValue1 = 5;
    inputValue2 = 0;
    writeOutput(bitAnd(inputValue1, inputValue2));

See also