Help for this page

Select Code to Download


  1. or download this
    my $id = "";
    $id .= "$_->{id}, " foreach @$names;
    
  2. or download this
    my $id =  join ", ", map $_->{id},  @$names;
    
  3. or download this
    my $id =  join ", ", map $_->{id} // (),  @$names;