Lodash - nth method



Syntax

_.nth(array, [n=0])

Gets all but the last element of 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
lodash_array.htm
Advertisements