Help for this page

Select Code to Download


  1. or download this
    foreach (@myarray) {
          $myhash{$_} = 1;
    }
    
  2. or download this
    $myhash{$_}++ for @myarray;
    
  3. or download this
    if ($myhash{'blah'}) {
        do_something();
    }
    
  4. or download this
    if (exists($myhash{'blah'})) { 
      # Do something here
    }