Skip to content

Function: bit_and()

ts
function bit_and(
   this: void, 
   left: number, 
   right: number): number;

Apply bitwise AND to two signed integers.

Parameters

ParameterTypeDescription
thisvoid-
leftnumberLeft operand.
rightnumberRight operand.

Returns

number

Result of left & right.