Help for this page

Select Code to Download


  1. or download this
    my $key = 'key01';
    if (exists $hash{$key}) { 
        print "$key is in hash";
    }
    
  2. or download this
    my $key = 'key01';
    if ($hash{$key}) { 
        print "$key is in hash";
    }