Syntax Of Lodash nth method
_.nth(array, [n=0])
Lodash nth method gets all but the last element of the array.
Arguments
- array (Array) − The array to query.
- [n=0] (number) − The index of the element to return.
Output
- (*) − Returns the nth element of array.
Example
var _ = require('lodash'); var list = [1, 2, 3, 2, 5, 6, 2]; var result = _.nth(list,2) console.log(result); var result = _.nth(list,3) console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
3 2
Next Topic – Click Here
Pingback: Lodash - lastIndexOf method - Adglob Infosystem Pvt Ltd
Pingback: Lodash - Array - Adglob Infosystem Pvt Ltd