Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc.
The _.toLength() method is used to convert the given value to an integer suitable for use as the length of an array-like object.
Syntax:
_.toLength( value )
Parameters: This method accepts a single parameter as mentioned above and described below:
- value: This parameter holds the value to convert.
Return Value: This method returns the converted integer.
Example 1:
Javascript
| // Requiring the lodash library   const _ = require("lodash");        Â// Use of _.toLength() method  console.log(_.toLength(15.6));  console.log(_.toLength('15.6')); | 
Output:
15 15
Example 2: Â
Javascript
| // Requiring the lodash library   const _ = require("lodash");        Â// Use of _.toLength() method  console.log(_.toLength(Number.MIN_VALUE));  console.log(_.toLength(Number.MAX_VALUE)); | 
 
Output:
0 4294967295

 
                                    







