syntax question
I know that the null coalescing operator has been introduced but in a project I need a similar function like the in php. Or is it that a reference will be truthy or falsey
1 Reply
what are you trying to accomplish exactly?
I think you want something like
if (value === undefined)
?