Lodash - toSafeInteger method



Syntax

_.toSafeInteger(value)

Converts value to a safe integer. A safe integer can be compared and represented correctly.

Arguments

  • value (*) − The value to convert.

Output

  • (number) − Returns the converted number.

Example

var _ = require('lodash');
 
console.log(_.toSafeInteger(3.2));
console.log(_.toSafeInteger(Infinity));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

3
9007199254740991
lodash_lang.htm
Advertisements