Converts value to a safe integer.
value
A safe integer can be compared and represented correctly.
Optional
The value to convert.
Returns the value converted to a safe integer.
toSafeInteger(3.2); // => 3toSafeInteger(Number.MAX_VALUE); // => 9007199254740991toSafeInteger(Infinity); // => 9007199254740991toSafeInteger('3.2'); // => 3toSafeInteger(NaN); // => 0toSafeInteger(null); // => 0toSafeInteger(-Infinity); // => -9007199254740991 Copy
toSafeInteger(3.2); // => 3toSafeInteger(Number.MAX_VALUE); // => 9007199254740991toSafeInteger(Infinity); // => 9007199254740991toSafeInteger('3.2'); // => 3toSafeInteger(NaN); // => 0toSafeInteger(null); // => 0toSafeInteger(-Infinity); // => -9007199254740991
Alias