forked from Chalarangelo/30-seconds-of-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Chalarangelo#244 from kingdavidmartins/pullAll
add pullAll
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
### pullAll | ||
|
||
Mutates the original array to filter out the values specified (accepts an array of values). | ||
|
||
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 pullAll = (arr, pullArr) => { | ||
let pulled = arr.filter((v, i) => !pullArr.includes(v)); | ||
arr.length = 0; pulled.forEach(v => arr.push(v)); | ||
} | ||
// let myArray = ['a', 'b', 'c', 'a', 'b', 'c']; | ||
// pullAll(myArray, ['a', 'c']); | ||
// console.log(myArray) -> [ 'b', 'b' ] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters