From 496aea34beaed2e399c34cec58c2ccb0f7dc7da1 Mon Sep 17 00:00:00 2001 From: DV Date: Mon, 29 Dec 2025 21:25:08 +0530 Subject: [PATCH] Update section title for better clarity Renamed section from 'Modify-in-place' to 'Compound Assignment' for clarity. --- 1-js/02-first-steps/08-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.