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...
Series
ELI5 = Explain Like I am 5! Sit back, relax, read and enjoy as I decode & explain JavaScript concepts in this ELI5 series :)
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!
