From 91ec60d862d169ebb49f09091ac1a7679247c0a9 Mon Sep 17 00:00:00 2001 From: Roberto Date: Thu, 11 Aug 2022 20:11:42 -0300 Subject: [PATCH] Commentary in the wrong line Looks like the right line for a comment is the line 306 instead of 308. --- 1-js/02-first-steps/08-operators/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/08-operators/article.md b/1-js/02-first-steps/08-operators/article.md index fbf2cbf9..e0187d0f 100644 --- a/1-js/02-first-steps/08-operators/article.md +++ b/1-js/02-first-steps/08-operators/article.md @@ -303,9 +303,9 @@ Such operators have the same precedence as a normal assignment, so they run afte ```js run let n = 2; -n *= 3 + 5; +n *= 3 + 5; // right part evaluated first, same as n *= 8 -alert( n ); // 16 (right part evaluated first, same as n *= 8) +alert( n ); // 16 ``` ## Increment/decrement