Merge pull request #3142 from betofc89/patch-1

This commit is contained in:
Ilya Kantor 2022-08-14 14:34:12 +03:00 committed by GitHub
commit 2f9a190994
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