Function setBit

  • Sets the bit at the specified position to 1.

    This function performs a bitwise OR operation to ensure that the bit at the kth position is set to 1.

    Returns

    The new number with the bit at position k set to 1.

    Parameters

    • n: number

      The number in which the bit will be set.

    • k: number

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

    Returns number

Generated using TypeDoc