Update lodash.md

This commit is contained in:
Rico Sta. Cruz 2020-06-13 10:09:54 +10:00 committed by GitHub
parent abf62e4868
commit 9a73127177
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ description: |
```js ```js
_.filter(list, (n) => n % 2) // → Array _.filter(list, (n) => n % 2) // → Array
_.find(list, (n) => n % 2) // → item _.find(list, (n) => n % 2) // → item
_.findLast(list, ...) // → item _.findLast(list, ...) // → item
``` ```
Works for both arrays and objects. Works for both arrays and objects.