`x ?? y` returns y iff x is null.
In daily practice, I've hardly ever used it. I use early returns all the time, though, and the code becomes very nice and readable.
`x ?? y` returns y iff x is null.
In daily practice, I've hardly ever used it. I use early returns all the time, though, and the code becomes very nice and readable.