Help for this page

Select Code to Download


  1. or download this
    print "Array isn't empty.Array Values:@array\n" if($array[0]);
    
  2. or download this
    # my @array = (0, undef, 1, 2, 3);
    my @array = (undef, undef, 1, 2, 3);
    
    print "Array isn't empty.Array Values:@array\n" if($array[0]);