Function isBitOn

  • Checks if the bit at the specified position is on (1).

    This function performs a bitwise AND operation to check if the bit at the kth position is set to 1. It returns true if the bit is set, otherwise false.

    Returns

    true if the bit is on (1), otherwise false.

    Parameters

    • n: number

      The number to check.

    • k: number

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

    Returns boolean

Generated using TypeDoc