Help for this page

Select Code to Download


  1. or download this
    push @$hash{'Element'}, (1, 2, 3, 4, 5);
    
  2. or download this
    push @$hash{'Element'}, $item;
    
  3. or download this
    push @$hash{'Element'}, @array;
    
  4. or download this
    $hash{'Element'} = [1, 2, 3, 4, 5];