Help for this page

Select Code to Download


  1. or download this
    my @userArray = qw(batman robin joker);
    my @userArray2; #this is a null array
    my @mainArray = (@userArray, @userArray2);
    
  2. or download this
    #@set should consist "batman robin joker", but not
    #"batman robin joker NULL"
    
  3. or download this
    my @set = map { exists($_)? $_ : delete($_) } @mainArray;