diff --git a/1-js/02-first-steps/07-operators/article.md b/1-js/02-first-steps/07-operators/article.md index ff171ea0..5fc083b6 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -409,7 +409,7 @@ For example: ```js run *!* -a = (1+2, 3+4); +let a = (1+2, 3+4); */!* alert( a ); // 7 (the result of 3+4)