PHP - Conditional Statements
Given this array:
What will be the output?
$data = ['name' => null, 'age' => 25];
// Use null coalescing to get 'name' or 'Unknown'
$name = $data['name'] ?? 'Unknown';
echo $name;
What will be the output?
