Lodash – tail method

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

Syntax Of Lodash tail method

_.tail(array)

The Lodash – tail method gets all but the first element of the array.

Arguments

  • array (Array) − The array to query.

Output

  • (Array) − Returns the slice of array.

Example

var _ = require('lodash');
var list = [1, 2, 3, 4];

var result = _.tail(list);
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 2, 3, 4 ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply