Help for this page

Select Code to Download


  1. or download this
    $hashref->{personal} = $arrayref;
    # Results in:
    ...
      designation => "Manager",
      personal    => ["Country", "location", "language"],
    }
    
  2. or download this
    @{$hashref}{@$arrayref} = ();
    # Results in:
    ...
      location    => undef,
      language    => undef,
    }