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
Pingback: Lodash - pullAllWith method - Adglob Infosystem Pvt Ltd
Pingback: Lodash - Array - Adglob Infosystem Pvt Ltd