dropWhile
Removes elements in an array until the passed function returns true
.
Returns the remaining elements in the array.
- Loop through the array, using
Array.prototype.slice()
to drop the first element of the array until the value returned fromfunc
istrue
. - Return the remaining elements.