ELI5 JavaScript: Nullish Coalescing (??) & Logical Nullish Assignment (??=)
ES2020 introduced a new logical operator called Nullish Coalescing (denoted by ??). Read the article to learn more about it!
Nov 6, 20214 min read183

Search for a command to run...
Articles tagged with #webdev
ES2020 introduced a new logical operator called Nullish Coalescing (denoted by ??). Read the article to learn more about it!

The spread operator (...) introduced in JavaScript ES6 is used to 'unpack' elements of an iterable. Read the article to learn more about it!
