diff --git a/README.md b/README.md index f14a410..2e79e34 100644 --- a/README.md +++ b/README.md @@ -2165,11 +2165,11 @@ Most of these features already supported by some browsers and try out with babel The above logical assignment operation can be expanded to: ```javascript - x = x ?? (x = y); + x ?? (x = y); (OR) if (!x) { x = y; } ``` - **[⬆ Back to Top](#table-of-contents)** \ No newline at end of file + **[⬆ Back to Top](#table-of-contents)**