Lodash - toLength method



Syntax

_.toLength(value)

Converts value to an integer suitable for use as the length of an array-like object.

Arguments

  • value (*) − The value to check.

Output

  • (number) − Returns the converted integer.

Example

var _ = require('lodash');

console.log(_.toLength(3.2));
console.log(_.toLength(Infinity));

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

Command

\>node tester.js

Output

3
4294967295
lodash_lang.htm
Advertisements