Lodash - toFinite method



Syntax

_.toFinite(value)

Converts value to a finite number.

Arguments

  • value (*) − The value to convert.

Output

  • (number) − Returns the converted number.

Example

var _ = require('lodash');

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

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

Command

\>node tester.js

Output

3.2
1.7976931348623157e+308
lodash_lang.htm
Advertisements