Lodash – pull At method

  • Post author:
  • Post category:Lodash
  • Post comments:2 Comments
Lodash - pull At method

Syntax Of Lodash pull At method

_.pullAt(array, [indexes])

Lodash pull At method removes elements from an array corresponding to indexes and returns an array of removed elements.

Arguments

  • array (Array) โˆ’ The array to modify.
  • [indexes] (…(number|number[])) โˆ’ The indexes of elements to remove.

Output

  • (Array) โˆ’ Returns the new array of removed elements.

Example

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

var result = _.pullAt(list,[2, 5])
console.log(result);

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

Command

\>node tester.js

Output

[ 3, 6 ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply