Files
30-seconds-of-code/test/dropElements/dropElements.js

4 lines
123 B
JavaScript

module.exports = dropElements = (arr, func) => {
while (arr.length > 0 && !func(arr[0])) arr = arr.slice(1);
return arr;
};