DEV Community

Discussion on: Language Features: Best and Worst

 
awwsmm profile image
Andrew (he/him)

Nice! That's a cool little operator.

Thread Thread
 
_hs_ profile image
HS

a bit late but yeah.. Valentin answerd already but ?. checks for null and prevents null pointer exception and returns null for value but also ?? is null coalescing operator which in case something returns null takes right side value as in java ternary operator but this one's shorter so nullvaluestring ?? "somedefaultvalue" looks a bit prettier :D