Function clearBit

  • Clears the bit at the specified position (sets it to 0).

    This function performs a bitwise AND operation with a mask to ensure that the bit at the kth position is set to 0.

    Returns

    The new number with the bit at position k cleared (set to 0).

    Parameters

    • n: number

      The number in which the bit will be cleared.

    • k: number

      The position of the bit to clear (0-indexed).

    Returns number

Generated using TypeDoc