Commentary in the wrong line

Looks like the right line for a comment is the line 306 instead of 308.
This commit is contained in:
Roberto 2022-08-11 20:11:42 -03:00 committed by GitHub
parent 7000ede297
commit 91ec60d862
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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