Help for this page

Select Code to Download


  1. or download this
    @array = grep { $_ != 5 } @array;
    
  2. or download this
    my @thrownaway;
    @array = grep { if ( $_ == 5 ) { push @thrownaway, $_; 0 } else 1; } @
    +array;