Q. What will be the output of: echo 5 ?? 10;
β
Correct Answer: (A)
5
Explanation: Null coalescing returns left operand if not null.
Explanation: Null coalescing returns left operand if not null.