Help for this page

Select Code to Download


  1. or download this
    for $i(0..$#array) {
        splice @array, $i, 1 if $array[$i] == 5;
    }
    
  2. or download this
    for (@array) { ... if $_ == 5. }