ok, so I have an array like:
var myarray = {
"field_1": "lorem ipsum",
"field_2": 1,
"field_2": 2,
"field_2": 6
};
as you see there are duplicate names in the array, but with different values. If i go through it like (using jQuery):
$.each(myarray, function(key, value)
{
console.log(key);
console.log(myarray[key]);
console.log(myarray[value]);
}
key - returns the correct key
myarray[key] - returns the name for that key
myarray[value] - returns the last elements', with that name, value
meaning for field_2 it will return 6, though it'll print it 3 times, as it repeats 3 times in the array.
My question is how to obtain the correct value for that duplicate named fields and not just the last one's
Thank you