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;