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.