Linting
This commit is contained in:
@ -10,11 +10,11 @@ Use `Array.push()` to keep track of pulled values
|
||||
const pullAtIndex = (arr, pullArr) => {
|
||||
let removed = [];
|
||||
let pulled = arr.map((v, i) => pullArr.includes(i) ? removed.push(v) : v)
|
||||
.filter((v, i) => !pullArr.includes(i))
|
||||
arr.length = 0;
|
||||
.filter((v, i) => !pullArr.includes(i));
|
||||
arr.length = 0;
|
||||
pulled.forEach(v => arr.push(v));
|
||||
return removed;
|
||||
}
|
||||
};
|
||||
|
||||
// let myArray = ['a', 'b', 'c', 'd'];
|
||||
// let pulled = pullAtIndex(myArray, [1, 3]);
|
||||
|
||||
Reference in New Issue
Block a user