Help for this page

Select Code to Download


  1. or download this
    for (101..103) {
       delete $hash{$_};
    }
    
  2. or download this
    map { delete $hash{$_} if ($_ > 101 && $_ < 103)  } keys %hash;