- or download this
for my $item( @{$inventors_object->{items}} ){
print $item->{name} . "\n";
};
- or download this
$inventors_object->{items}->[0}->{name} = 'new name';
- or download this
my $new_json = objToJson( $inventors_object );
- or download this
@inventors_array = $inventors_obj->{"items"};
- or download this
@inventors_array = @{ $inventors_obj->{"items"} };