Nullish Coalescing Operator (??) null and undefined
(??) Is known as the Null coalescing operator in JavaScript.
Val1 = null ?? 10 // 10
Val2 = undefined ?? 15 // 15
Instead of 10 and 15 a complex function can be placed here.
For example, if the DB or API response is null / undefined we can safely avoid the null exception with this (??) Operator.