From c3214e76848c944c8bb8112e7400d3bfe5c51a76 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 21 Jul 2021 22:36:11 +0300 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/04-variables/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index 03eeaa6d..0d5d2f30 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -24,7 +24,7 @@ Now, we can put some data into it by using the assignment operator `=`: let message; *!* -message = 'Hello'; // store the string +message = 'Hello'; // store the string 'Hello' in the variable named message */!* ```