Help for this page

Select Code to Download


  1. or download this
    undef $array[$i]
    
  2. or download this
    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";