When variables are undefined or set to undefined as in
|
They are given special value undef which typically behaves the same as null (character string) or zero (numeric) value
|
$index = $#fred; # sets $index to index value of last entry in @fred
|
Useful functions defined() and exists() are available |