Lodash - pullAt method



Syntax

_.pullAt(array, [indexes])

Removes elements from 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 ]
lodash_array.htm
Advertisements