Syntax Of Lodash initial method
_.initial(array)
Gets all but the last element of the array in the Lodash initial method.
Arguments
- array (Array) − The array to query.
Output
- (Array) − Returns the slice of array.
Example
var _ = require('lodash'); var list = [1, 2, 3, 4, 5, 6]; var result = _.initial(list) console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
[ 1, 2, 3, 4, 5 ]
Next Topic – Click Here
Pingback: Lodash - indexOf method - Adglob Infosystem Pvt Ltd
I loved your blog post.Thanks Again. Really Great.