I have used null coalescing operator in return statements like below
return Variable??"undefined";
But the below code,
return Variable??Variable="undefined";
I could not understand how it works, since the second parameter to the operator is a assignment statement and i wonder how the return works.
could some one help me understand