Skip to content

Commit 1451894

Browse files
authored
Merge pull request #14 from saroamirkhanyan/patch-1
Update README.md
2 parents c018f6d + 747e00d commit 1451894

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2165,11 +2165,11 @@ Most of these features already supported by some browsers and try out with babel
21652165
The above logical assignment operation can be expanded to:
21662166
21672167
```javascript
2168-
x = x ?? (x = y);
2168+
x ?? (x = y);
21692169
(OR)
21702170
if (!x) {
21712171
x = y;
21722172
}
21732173
```
21742174
2175-
**[⬆ Back to Top](#table-of-contents)**
2175+
**[⬆ Back to Top](#table-of-contents)**

0 commit comments

Comments
 (0)