Ensure n is an integer within [0,MAX_SAFE_INTEGER] range.
[0,MAX_SAFE_INTEGER]
Input number.
Description of the number type.
RangeError Thrown if n is out of valid range.
Ensure n is an integer within [0,max] range.
[0,max]
Maximum allowed value (inclusive).
Ensure n is an integer within [min,max] range.
[min,max]
Minimum allowed value (inclusive).
Ensure n is an integer within
[0,MAX_SAFE_INTEGER]
range.