Lodash - toInteger method



Syntax

_.toInteger(value)

Converts value to an integer.

Arguments

  • value (*) − The value to check.

Output

  • (number) − Returns the converted integer.

Example

var _ = require('lodash');

console.log(_.toInteger('3.2'));
console.log(_.toInteger(Infinity));

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

Command

\>node tester.js

Output

3
1.7976931348623157e+308
lodash_lang.htm
Advertisements