Help for this page

Select Code to Download


  1. or download this
      my $hash_ref = $array_ref->[2];
      my $value = $hashref->{$key};
    
  2. or download this
      my $value = $array_ref->[2]->{$key};
    
  3. or download this
      my $value = $array_ref->[2]{$key};