Help for this page

Select Code to Download


  1. or download this
    my $names =
    [
    ...
            id   =>  undef,
        },
    ];
    
  2. or download this
    foreach my $a (@{ $names }) {
    
       push(@ids, $a->{id} // ());
    }
    
  3. or download this
    my $ids = join ',', map { $_->{id} // () } @$names;