From 475f66a4aefebf15c27e683ab7f736f1827bbd04 Mon Sep 17 00:00:00 2001 From: Hari Shekhar Date: Thu, 1 Aug 2019 13:43:59 +0530 Subject: [PATCH] Object reference was incorrect. --- 1-js/05-data-types/09-keys-values-entries/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/09-keys-values-entries/article.md b/1-js/05-data-types/09-keys-values-entries/article.md index 38ed99e5..ca0be768 100644 --- a/1-js/05-data-types/09-keys-values-entries/article.md +++ b/1-js/05-data-types/09-keys-values-entries/article.md @@ -83,7 +83,7 @@ If we'd like to apply them, then we can use `Object.entries` followed `Object.fr For example, we have an object with prices, and would like to double them: ```js run -let users = { +let prices = { banana: 1, orange: 2, meat: 4,