Help for this page

Select Code to Download


  1. or download this
    @b = map { defined($a[$_]) ? ($a[$_]) : () } 0..5;
    
  2. or download this
    @b = grep { defined } map { $a[$_] } 0..5;