From cc8f9e7a72e8d220fe7873bf2b401dd2a1951919 Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Thu, 22 Oct 2020 10:02:27 +0300 Subject: [PATCH] Update pluck.md --- snippets/pluck.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/pluck.md b/snippets/pluck.md index 3fa530e4e..27b3ccb97 100644 --- a/snippets/pluck.md +++ b/snippets/pluck.md @@ -3,7 +3,7 @@ title: pluck tags: array,object,beginner --- -Converts and array of objects into an array of values corresponding to the specified `key`. +Converts an array of objects into an array of values corresponding to the specified `key`. - Use `Array.prototype.map()` to map the array of objects to the value of `key` for each one.