Function getBit

  • Returns the bit at the specified position in a number.

    This function performs a bitwise AND operation to isolate the bit at the kth position. If the bit is 0, it returns 0; otherwise, it returns 1.

    Returns

    The bit at position k (either 0 or 1).

    Parameters

    • n: number

      The number whose bit will be retrieved.

    • k: number

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

    Returns number

Generated using TypeDoc