PHP - Functions
What will be the output of this PHP code?
function checkAge(?int $age) {
if ($age === null) {
return "Age not provided";
}
return "Age is $age";
}
echo checkAge(null);