Update dropWhile.md

This commit is contained in:
Angelos Chalaris
2020-02-18 16:21:03 +02:00
committed by GitHub
parent f3743a214b
commit e03600e41c

View File

@ -16,5 +16,5 @@ const dropWhile = (arr, func) => {
```
```js
dropWhile([1, 2, 3, 4], n => n >= 3); // [3,4]
dropWhile([1, 2, 3, 4], n => n >= 3); // [3, 4]
```