diff --git a/1-js/02-first-steps/08-operators/article.md b/1-js/02-first-steps/08-operators/article.md index d52c37a172..3cff9be4d8 100644 --- a/1-js/02-first-steps/08-operators/article.md +++ b/1-js/02-first-steps/08-operators/article.md @@ -271,7 +271,7 @@ Once again, for the purposes of readability it's better to split such code into ```js c = 2 + 2; b = c; -a = c; +a = b; ``` That's easier to read, especially when eye-scanning the code fast.