From 154bf024ac452e3333b86792671097225d280b24 Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Mon, 12 Oct 2020 19:29:41 +0300 Subject: [PATCH] Fix possible typo in 1.5.7 task --- 1-js/05-data-types/07-map-set/03-iterable-keys/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/07-map-set/03-iterable-keys/task.md b/1-js/05-data-types/07-map-set/03-iterable-keys/task.md index 25c74bfc..81507647 100644 --- a/1-js/05-data-types/07-map-set/03-iterable-keys/task.md +++ b/1-js/05-data-types/07-map-set/03-iterable-keys/task.md @@ -4,7 +4,7 @@ importance: 5 # Iterable keys -We'd like to get an array of `map.keys()` in a variable and then do apply array-specific methods to it, e.g. `.push`. +We'd like to get an array of `map.keys()` in a variable and then apply array-specific methods to it, e.g. `.push`. But that doesn't work: