Determine if input is an integer within the unsigned 32-bit integer range.
input
isUInt32(42); // trueisUInt32(-1); // false Copy
isUInt32(42); // trueisUInt32(-1); // false
Determine if
inputis an integer within the unsigned 32-bit integer range.