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 8077579
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:30:43+00:00 2026-06-05T15:30:43+00:00

I am trying to populate an array with the text value of a json

  • 0

I am trying to populate an array with the text value of a json obejct based off values from another array

my code is:

var DemoOptions = {
  "One" : 1,
  "Two" : 2,
  "Three" : 3,
  "Four" : 4,
  "Five" : 5
};

var OldArray = [1,3,5];
var NewArray = [];


$.each(OldArray,function(x, item){
    NewArray.push(DemoOptions.item);
});

NewArray should now be:

NewArray ["One", "Three", "Five"]   
  • 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-05T15:30:46+00:00Added an answer on June 5, 2026 at 3:30 pm

    If DemoOptions was flipped like:

    var DemoOptions = {
      1: "One",
      2: "Two",
      3: "Three",
      4: "Four",
      5: "Five"
    };
    

    you could do this very easily, because you just need to iterate through OldArray one and push the respective value (mapped by DemoOptions) into NewArray. Since there is probably a good reason you have it the other way, you should create this flipped copy dynamically and then fill your new array:

    var DemoOptions = {
      "One" : 1,
      "Two" : 2,
      "Three" : 3,
      "Four" : 4,
      "Five" : 5
    };
    
    var OldArray = [1,3,5];
    
    
    var flipped = {};
    for(var key in DemoOptions)
        flipped[DemoOptions[key]] = key;
    
    var NewArray = [];
    for(var i = 0; i < OldArray.length; i++)
        NewArray.push(flipped[OldArray[i]]);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi i am trying to auto populate a 2d array based on user input.
I am trying to populate a UITableView with data from json result. I can
I'm trying to populate an array from a dataset with only a specific column
I am trying to populate an array with a path to a file. <?php
I am trying to populate a javascript array that will be used to pass
I am trying to populate a ListView ....but I cant add 2 string values
I am trying to populate the list li from the LoginAction on to the
I am trying to populate a dropdown select with an array using jQuery. Here
I'm currently trying to populate an UITableView from a plist downloaded from the internet.
I'm trying to populate a multidimensional array (array with array elements) via Javascript or

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.