From ad8ab1d55f298748118cac96ff3b88a2620621e5 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 5 Dec 2018 15:55:02 +0300 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/04-variables/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index 50ec5b3e..6de16ff8 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -219,9 +219,9 @@ num = 5; // the variable "num" is created if didn't exist alert(num); // 5 ``` -That's a bad practice, it gives an error in the strict mode: +That's a bad practice, it would give an error in the strict mode: -```js run refresh untrusted +```js "use strict"; *!*