Help for this page
undef $array[$i]
my @array = qw( 1 2 3 4 ); ... print "\$array[2] is now undefined \n" if not defined $array[2]; print "there are STILL ".scalar(@array)." elements in \@array \n"; print "the last index of \@array is STILL $#array \n";