### Description Undefined === null; // true function my_function($hello = 123) { var_dump($hello); } my_function(null); // > null my_function(undefined); // > 123
Description
Undefined === null; // true
function my_function($hello = 123)
{
var_dump($hello);
}
my_function(null); // > null
my_function(undefined); // > 123