From 2bf8a27fad80d2162f1b98f6c9289a92d35ea67f Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 9 Aug 2020 21:02:40 +0300 Subject: [PATCH] minor fixes --- 1-js/06-advanced-functions/03-closure/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/03-closure/article.md b/1-js/06-advanced-functions/03-closure/article.md index 95e33259..e8eb934e 100644 --- a/1-js/06-advanced-functions/03-closure/article.md +++ b/1-js/06-advanced-functions/03-closure/article.md @@ -1,5 +1,5 @@ -# Variable scope +# Variable scope, closure JavaScript is a very function-oriented language. It gives us a lot of freedom. A function can be created at any moment, passed as an argument to another function, and then called from a totally different place of code later.