Merge pull request #202 from kingdavidmartins/add-pull

Add pull
This commit is contained in:
Angelos Chalaris
2017-12-17 11:48:20 +02:00
committed by GitHub
2 changed files with 17 additions and 2 deletions

View File

@ -0,0 +1,14 @@
### Array pull (mutates array)
Use `Array.filter()` and `Array.includes()` to pull out the values that are not needed.
Use `Array.length = 0` to mutate the passed in array by resetting it's length to zero and `Array.push()` to re-populate it with only the pulled values.
```js
const pull = (arr, ...args) => {
let pulled = arr.filter((v, i) => args.includes(v));
arr.length = 0; pulled.forEach(v => arr.push(v));
};
// let myArray = ['a', 'b', 'c', 'a', 'b', 'c'];
// pull(myArray, 'a', 'c');
// console.log(myArray) -> [ 'b', 'b' ]
```