Coalesce
Examples
Check if a property or index exists
if ($someArray[10] ?? false) {
// exists
} else {
// does not exist
}
if ($someMap.foo ?? false) {
// exists
} else {
// does not exist
}Default values when something doesn't exist
Chaining
Last updated