✔ Coalesce Operator


<?php
$a 
NULL;
$b 0;
$c 2;

echo 
$a ?? $b// 0
echo $c ?? $b// 2
echo $a ?? $b ?? $c// 0
echo $a ?? $x ?? $c// 2
?>