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