Help for this page

Select Code to Download


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