Help for this page

Select Code to Download


  1. or download this
    if ($hash{foo}{bar})
    
  2. or download this
    delete $hash{foo};
    delete @hash{qw( foo bar )};
    delete local $hash{foo};            # Since 5.11.0
    delete local @hash{qw( foo bar )};  # Since 5.11.0