From 360be9ed996fcb2d93da31e91264ede725486b7e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 21 Feb 2019 18:47:25 +0300 Subject: [PATCH] fix --- .../01-object/3-is-empty/_js.view/solution.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/04-object-basics/01-object/3-is-empty/_js.view/solution.js b/1-js/04-object-basics/01-object/3-is-empty/_js.view/solution.js index e7f63284..db3283e4 100644 --- a/1-js/04-object-basics/01-object/3-is-empty/_js.view/solution.js +++ b/1-js/04-object-basics/01-object/3-is-empty/_js.view/solution.js @@ -1,7 +1,7 @@ function isEmpty(obj) { for (let key in obj) { - // if the loop has started, there is a prorty + // if the loop has started, there is a property return false; } return true; -} \ No newline at end of file +}