Quick rookie question please.

Suppose I have a javsacript object like so:

var meh=[["cars",27], ["bikes",85], ["skates",4]];

To go through each data object here, I can do this:

$.each(meh, function(index,value){        
    console.log(value) //returns ["cars",27] etc..
 });

And considering I know the place of, say, cars, I can do this to access it:

console.log(meh[0][0]) //shows "Cars"

and of course, if I want the value of cars, I need to do this:

console.log(meh[0][1]) //Shows 27

Now, I have the string - Keys, like cars, bikes or skates

But I cant figure out this: How do I access their respective values?

meh["cars"] is returning undefined, since, as I understand, it cant find a description outside each object.

I can do meh[0]["cars"] but it defeats the point as the position of cars might change.

How do I access a value of something with their key please?

thanks.

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

If you have access to the code and can change the object, change it to something like this:

meh = {
  'cars': 27,
  'bikes': 85,
  'skates': 4
};

and you can access them with keys like

meh["cars"] //will give you 27

If you cannot change the code, then the only way I see is using jQuery.each and comparing each key with your known key and assigning it to a temp variable.

link|improve this answer
I can change the code, If iterating the array was my plan B, if SO failed me - something which has happened just once till now! – LocustHorde May 17 '11 at 11:56
thanks you for answering though. – LocustHorde May 17 '11 at 11:57
feedback

You should change that to objects

var meh={"cars" :27 , "bikes" :85, "skates" :4};

Now you can simply access it via keys

alert(meh['cars']); //27
link|improve this answer
thank you very much. – LocustHorde May 17 '11 at 11:56
feedback

Use an object instead:

var meh = {
    "cars":   27,
    "bikes":  85,
    "skates": 4
};

You can iterate over it using $.each():

$.each(meh, function (key, value) {
    // key == "cars" and value == 27, etc.
});

Accessing values works like this:

meh.cars

which is equivalent to this:

meh["cars"]

Obviously, the second notation can be used with variables.

link|improve this answer
feedback

You have your data structure in an array, so you are always going to have to access by the array syntax e.g. [0][1]. The arrays in JavaScript are not associative. You could write a helper function which iterates around the array looking for the key you specify and returning the value back. Or you could change your data structure to be Objects, which do support key lookup.

link|improve this answer
feedback

If you can't alter the object, you can create a map to make managing the indices simple. E.g.

map = {
  'cars': 0,
  'bikes': 1,
  'skates': 2
};

Then, you can do:

alert(meh[map['cars']][1]);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.