What is use of Null Coalesce Operator? Technology Community › Category: PHP › What is use of Null Coalesce Operator? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Null coalescing operator returns its first operand if it exists and is not NULL. Otherwise it returns its second operand. Example: $name = $firstName ?? $username ?? $placeholder ?? "Guest";