From 0ab65500ceb3d79b090978499cd872c9f1d87986 Mon Sep 17 00:00:00 2001 From: Aleksandras Date: Wed, 16 Aug 2023 22:21:34 +0300 Subject: [PATCH] Clarification --- 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 ec6c3a1c63..c6685de351 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -18,7 +18,7 @@ The statement below creates (in other words: *declares*) a variable with the nam let message; ``` -Now, we can put some data into it by using the assignment operator `=`: +Now, we can put some data into it (in other words: *define a variable*) by using the assignment operator `=`: ```js let message;