diff --git a/1-js/02-first-steps/08-operators/article.md b/1-js/02-first-steps/08-operators/article.md index d52c37a172..28261a75ab 100644 --- a/1-js/02-first-steps/08-operators/article.md +++ b/1-js/02-first-steps/08-operators/article.md @@ -275,7 +275,7 @@ a = c; ``` That's easier to read, especially when eye-scanning the code fast. -## Modify-in-place +## Compound Assignment We often need to apply an operator to a variable and store the new result in that same variable.