From 9a73127177e50c18edbaaac90cc8c0d987c30baa Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Sat, 13 Jun 2020 10:09:54 +1000 Subject: [PATCH] Update lodash.md --- lodash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.md b/lodash.md index ff22f68ac..ba1fcc9d1 100644 --- a/lodash.md +++ b/lodash.md @@ -15,7 +15,7 @@ description: | ```js _.filter(list, (n) => n % 2) // → Array _.find(list, (n) => n % 2) // → item -_.findLast(list, ...) // → item +_.findLast(list, ...) // → item ``` Works for both arrays and objects.