From c84959b8ba8cbcd13dfa4b29ed8ee07552e8f602 Mon Sep 17 00:00:00 2001 From: davhojt Date: Fri, 24 Jun 2022 20:34:55 +0100 Subject: [PATCH] docs(manipulate-values): fix typo --- subjects/manipulate-values/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/manipulate-values/README.md b/subjects/manipulate-values/README.md index 66006723..ae7a69ab 100644 --- a/subjects/manipulate-values/README.md +++ b/subjects/manipulate-values/README.md @@ -4,7 +4,7 @@ Let's buy groceries. -You have a grocery cart with some items you need. The item's name if the `key`, and the `value` will represent nutrition facts per 100 grams. +You have a grocery cart with some items you need. The item's name is the `key`, and the `value` will represent nutrition facts per 100 grams. Create 3 functions that work like the `.filter`, `.map` and `.reduce` array methods, for the values in your grocery cart object. You can see their function names and how they work in the examples.