Lodash – nth method

  • Post author:
  • Post category:Lodash
  • Post comments:2 Comments
Lodash - nth method

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

This Post Has 2 Comments

Leave a Reply