Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7841425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T16:05:47+00:00 2026-06-02T16:05:47+00:00

I need to convert a hash map { fruit : [mango,orange], veg : [carrot]

  • 0

I need to convert a hash map

{ 
    "fruit" : ["mango","orange"],
    "veg"   : ["carrot"]
} 

to

[ 
  { "type" : "fruit" , "name" : ["mango","orange"] } ,
  { "type" : "veg" ,   "name" : ["carrot"] } 
]

how do I do that??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T16:05:49+00:00Added an answer on June 2, 2026 at 4:05 pm

    You can do it like this (in a working snippet):

    var input = { 
        "fruit" : ["mango","orange"],
        "veg"   : ["carrot"]
    } 
    
    var output = [], item;
    
    for (var type in input) {
        item = {};
        item.type = type;
        item.name = input[type];
        output.push(item);
    }
    
    // display result
    document.write(JSON.stringify(output));

    Or, if you or someone else has been extending the Object prototype with enumerable properties (which I think is a bad practice personally), then you could use this to protect from that:

    var input = { 
        "fruit" : ["mango","orange"],
        "veg"   : ["carrot"]
    } 
    
    var output = [], item;
    
    for (var type in input) {
        if (input.hasOwnProperty(type)) {
            item = {};
            item.type = type;
            item.name = input[type];
            output.push(item);
        }
    }
    
    // display result
    document.write(JSON.stringify(output));

    And, using some more modern functionality:

    var input = { 
        "fruit" : ["mango","orange"],
        "veg"   : ["carrot"]
    };
    
    var output = Object.keys(input).map(function(key) {
       return {type: key, name: input[key]};
    });
    
    // display the result
    document.write(JSON.stringify(output));
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need this Hash {peter => [apple, orange, mango], sandra => [flowers, bike]} convert
I need to store some names into a vector and then convert that data
I need an hash algorithm that outputs an alphanumeric string that is max 20
I need to create a hash map which will hold 528 bit binary data.
I need a hash that can be represented in less than 26 chars Md5
I am trying to hash a string then use that hash as the name
I need to convert a HashMap<String, Object> to an array; could anyone show me
I need to convert all of the following forms into .NET Uri object: hello.world
I need to convert an open delegate (one in which the Target is not
I need to convert some strings, and pull out the two first integers e.g:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.