Update snippet descriptions
This commit is contained in:
@ -3,10 +3,11 @@ title: dropWhile
|
||||
tags: array,intermediate
|
||||
---
|
||||
|
||||
Removes elements in an array until the passed function returns `true`. Returns the remaining elements in the array.
|
||||
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 returned value from the function is `true`.
|
||||
- Returns the remaining elements.
|
||||
- Loop through the array, using `Array.prototype.slice()` to drop the first element of the array until the value returned from `func` is `true`.
|
||||
- Return the remaining elements.
|
||||
|
||||
```js
|
||||
const dropWhile = (arr, func) => {
|
||||
|
||||
Reference in New Issue
Block a user