null
is a constant representing absence of a value. null is a
default value for unset variables.
Even though null looks like a bareword, it is not,
because it's one of the exceptional words along with true and false.
null is serialized as null |
|
null is a default value for unset options |
|
null == null is true |
|
?? is useful to replace null with a
predefined value |
|
null can't start bareword, use quotes |
|