From 34fd31c9c06de111ca3bbd1c4ce86e46039715e4 Mon Sep 17 00:00:00 2001 From: Jack Pickus Date: Thu, 4 Apr 2019 20:58:56 -0500 Subject: [PATCH] Update article.md --- 1-js/06-advanced-functions/04-var/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/04-var/article.md b/1-js/06-advanced-functions/04-var/article.md index 7b76eab1..0a366664 100644 --- a/1-js/06-advanced-functions/04-var/article.md +++ b/1-js/06-advanced-functions/04-var/article.md @@ -11,7 +11,7 @@ In the very first chapter about [variables](info:variables), we mentioned three But `var` is a very different beast, that originates from very old times. It's generally not used in modern scripts, but still lurks in the old ones. -If you don't plan meeting such scripts you may even skip this chapter or postpone it, but then there's a chance that it bites you later. +If you don't plan on meeting such scripts you may even skip this chapter or postpone it, but then there's a chance that it bites you later. From the first sight, `var` behaves similar to `let`. That is, declares a variable: