Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider:

var object = {
    foo:{},
    bar:{},
    baz:{}
}

How would I ...

var first=object[0];
console.log(first);

Obviously that doesn't work because the first index is named "foo", not 0.

console.log(object['foo']);

Works, but I don't know it's named foo. It could be named anything. I just want the first :)

Thanks!

share|improve this question

7 Answers

up vote 19 down vote accepted

If the order of the objects is significant, you should revise your JSON schema to store the objects in an array:

[
    {"name":"foo", ...},
    {"name":"bar", ...},
    {"name":"baz", ...}
]

or maybe:

[
    ["foo", {}],
    ["bar", {}],
    ["baz", {}]
]

As Ben Alpert points out, properties of Javascript objects are unordered, and your code is broken if you expect them to enumerate in the same order that they are specified in the object literal—there is no "first" property.

share|improve this answer
4  
I've never seen for(i in obj) do things in a different order, are you saying that sometimes for(i in obj) will kick things out in a different order? – rpflo May 26 '09 at 5:26
2  
It's is possible that it will. The specs says that it does not have to be enumerated in a specific order. This pretty much means that that order may change. – PatrikAkerstrand May 26 '09 at 5:28
3  
Most browsers these days do preserve insertion order, but that wasn't always the case; it's not required by the spec, and there were recent versions of Chrome that didn't preserve the insertion order. – Miles May 26 '09 at 5:42
1  
As I got deeper into what I was doing the order of things got more important (I thought I only cared about the first, but I was wrong!) so it was clear to store my objects in an array as you've suggested. – rpflo May 27 '09 at 23:02
If you know that the object has only one element, then you do know the order. – danorton Sep 24 '10 at 6:44

If you want something concise try:

for (first in obj) break;

alert(first);
share|improve this answer
doesn't work in < IE 8 does it? – bababa Apr 19 '11 at 20:13
2  
See Luke Schafer's answer below, it uses the hasOwnProperty method to ensure you don't grab prototype members. – Code Commander Aug 1 '11 at 17:57
Great, this helped a lot. – Ivan Ivković Jan 29 at 9:52

they're not really ordered, but you can do:

var first;
for (var i in obj) {
    if (obj.hasOwnProperty(i) && typeof(i) !== 'function') {
        first = obj[i];
        break;
    }
}

the .hasOwnProperty() is important to ignore prototyped objects.

share|improve this answer
There is an error in the above code. The typeof check should be typeof(i) – jacob.toye Feb 20 '12 at 0:25
@jacob.toye thanks, fixed – Luke Schafer Feb 20 '12 at 5:56
1  
typeof is an operator – Napalm Dec 4 '12 at 22:06
@Napalm he was referring to the error in the variable name being checked, not the syntax. You're right, but many people like the bracketing for readability – Luke Schafer Dec 14 '12 at 0:12

There is no way to get the first element, seeing as "hashes" (objects) in JavaScript have unordered properties. Your best bet is to store the keys in an array:

var keys = ["foo", "bar", "baz"];

Then use that to get the proper value:

object[keys[0]]
share|improve this answer

I had the same problem yesterday. I solved it like this:

var obj = {
        foo:{},
        bar:{},
        baz:{}
    },
   first = null,
   key = null;
for (var key in obj) {
    first = obj[key];
    if(typeof(first) !== 'function') {
        break;
    }
}
// first is the first enumerated property, and key it's corresponding key.

Not the most elegant solution, and I am pretty sure that it may yield different results in different browsers (i.e. the specs says that enumeration is not required to enumerate the properties in the same order as they were defined). However, I only had a single property in my object so that was a non-issue. I just needed the first key.

share|improve this answer

You could do something like this:

var object = {
    foo:{a:'first'},
    bar:{},
    baz:{}
}


function getAttributeByIndex(obj, index){
  var i = 0;
  for (var attr in obj){
    if (index === i){
      return obj[attr];
    }
    i++;
  }
  return null;
}


var first = getAttributeByIndex(object, 0); // returns the value of the
                                            // first (0 index) attribute
                                            // of the object ( {a:'first'} )
share|improve this answer

My solution:

Object.prototype.__index
=function(index)
         {var i=-1;
          for (var key in this)
              {if (this.hasOwnProperty(key) && typeof(this[key])!=='function')
                  {++i;
                  }
               if (i>=index)
                  {return this[key];
                  }
              }
          return null;
         }
aObj={'jack':3, 'peter':4, '5':'col', 'kk':function(){alert('hell');}, 'till':'ding'};
alert(aObj.__index(4));
share|improve this answer
3  
nice one, only… your coding style! what the hell? those braces are everywhere! – flying sheep Jun 25 '12 at 13:33
2  
Do you know python style? I just added vertical-aligned braces into python style. Anyway, "Hell is other people", :-D – diyism Jun 28 '12 at 4:29

protected by Brad Larson Oct 13 '11 at 19:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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