Is there a null coalescing operator in powershell?
I\'d like to be able to do these c# commands in powershell:
var s = myval ?? \"new value\"; var x
@($null,$null,"val1","val2",5) | select -First 1