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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:45:19+00:00 2026-05-28T13:45:19+00:00

I have this example: var name; var id; var array = []; $.each(data, function(index,

  • 0

I have this example:

var name;
var id;
var array = []; 

$.each(data, function(index, element) {
name = element.name;
id = element.id;
array[id] = name;
<a href="#" onClick="myFunction(array)">send</a>
console.log(array);
});

In this case .each will iterate 5 times and id will become 1, 2, 3, 4, 5 and name will change to five names

i would like to create a multidimensional array or an object that will look like this:

[1:name1] for the first iteration
[2:name2] for the second on
...

the pass each pair of values to the myFunction function
and inside that function to have access to the array values:

function myFunction(array){
// alert the key and value
}

Any ideas how can I accomplish this scenario?

  • 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-05-28T13:45:20+00:00Added an answer on May 28, 2026 at 1:45 pm

    It’s not clear what you’re trying to do, but if you want each entry in array to be an array containing the values of the id and name, you can change this line:

    array[id] = name;
    

    to

    array[id] = new Array(id, name);
    

    But I probably wouldn’t use an array for that, I’d probably just use an object:

    array[id] = {id: id, name: name};
    

    Then you can access it like this:

    x = array[id].name;
    

    In fact, does array really need to be an array at all? If not, just make it an object:

    data = {};
    

    Make id the key and name the value:

    data[id] = name;
    

    And this is how you loop it:

    function myFunction(data) {
        var id, name;
    
        for (id in data) {
            name = data[id];
            alert("id is " + id + ", name is " + name);
        }
    }
    

    With a plain object like that, there’s no need, but if the object you’re looping may have a prototype behind it, you’d want to only look at the object’s own properties:

    function myFunction(data) {
        var id, name;
    
        for (id in data) {
            if (data.hasOwnProperty(id)) {
                name = data[id];
                alert("id is " + id + ", name is " + name);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an array of objects, like this: var companies = [ { name
I have an array with would simbolize parameters of a function. For Example: var
Consider this example (typical in OOP books): I have an Animal class, where each
I have this array, for example (the size is variable): x = [1.111, 1.122,
I have the following (example) array of objects: var theArray = [ {theId:'1', num:
I have an array, lets call it foo. Each element of the array holds
If I have an array like this: var arr = ['one','two','three']; I can access
I need some help regarding jquery arrays. var queryArr; $(markersArray).each(function(index) { var _locationId =
I have this array of structures setup: <cfset table_columns = [ {name=Right Name, var_name=right_name,
I have this simple example I can't seems to get working : MERGE INTO

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.