What's the fastest way to count the number of keys/properties of an object? It it possible to do this without iterating over the object? i.e. without doing

var count = 0;
for (k in myobj) if (myobj.hasOwnProperty(k)) count++;

(Firefox did provide a magic __count__ property, but this was removed somewhere around version 4.)

link|improve this question

74% accept rate
Related: stackoverflow.com/questions/5223/… – ripper234 Jan 31 at 10:15
feedback

12 Answers

up vote 149 down vote accepted

To do this in any ES5-compatible environment, such as Node, Chrome, IE 9+, FF 4+, or Safari 5+:

Object.keys(obj).length

(Browser support from here)
(Doc on Object.keys here, includes method you can add to non-ECMA5 browsers)

link|improve this answer
1  
Was looking for this. That was awesome ;-) – changelog Mar 3 '11 at 15:46
1  
if you don't mind the overhead, its ok :) – droope Mar 29 '11 at 17:18
4  
Not just Node.js, but any environment that supports ES5 – Yi Jiang Apr 3 '11 at 23:38
1  
@Yi Jiang, good point, thanks! Updated answer accordingly. – Avi Flax Apr 5 '11 at 4:02
3  
BTW... just ran some tests... this method runs in O(n) time. A for loop isn't much worse than this method. ** sad face ** stackoverflow.com/questions/7956554/… – BMiner Oct 31 '11 at 16:58
show 2 more comments
feedback

You could use this code:

if (!Object.keys) {
    Object.keys = function (obj) {
        var keys = [],
            k;
        for (k in obj) {
            if (Object.prototype.hasOwnProperty.call(obj, k)) {
                keys.push(k);
            }
        }
        return keys;
    };
}

then you can do this in older browsers as well:

var len = Object.keys(obj).length;
link|improve this answer
What is the purpose of the check (Object.prototype.hasOwnProperty.call(obj, k))? – styfle May 14 at 21:04
@styfle If you use a for loop to iterate over the object's properties, you also get the properties in the prototype chain. That's why checking hasOwnProperty is necessary. It only returns properties set on the object itself. – Renaat De Muynck May 21 at 9:44
I guess I'm confused because you use call on hasOwnProperty instead of just using Object.prototype.hasOwnProperty(obj, k). What's the purpose of this? – styfle May 21 at 16:24
1  
@styfle To make it simpler you could just write obj.hasOwnProperty(k) (I actually did this in my original post, but updated it later). hasOwnProperty is available on every object because it is part of the Object's prototype, but in the rare event that this method would be removed or overridden you might get unexpected results. By calling it from Object.prototype it makes it little more robust. The reason for using call is because you want to invoke the method on obj instead of on the prototype. – Renaat De Muynck yesterday
feedback

Are you actually running into a performance problem? If so, I would suggest wrapping the calls that add/remove properties to/from the object with a function that also increments/decrements an appropriately named (size?) property, so you only need to calculate the initial number of properties once and move on from there. If there isn't an actual performance problem, don't bother. Just wrap that bit of code in a function getNumberOfProperties(object) and be done with it.

link|improve this answer
feedback

I'm not aware of any way to do this, however to keep the iterations to a minimum, you could try checking for the existance of __count__ and if it doesn't exist (ie not Firefox) then you could iterate over the object and define it for later use eg:

if (myobj.__count__ === undefined) {
  myobj.__count__ = ...
}

This way any browser supporting __count__ would use that, and iterations would only be carried out for those which don't. If the count changes and you can't do this, you could always make it a function:

if (myobj.__count__ === undefined) {
  myobj.__count__ = function() { return ... }
  myobj.__count__.toString = function() { return this(); }
}

This way anytime you reference myobj.__count__ the function will fire and recalculate.

link|improve this answer
11  
Note that Object.prototype.__count__ is being removed in Gecko 1.9.3: whereswalden.com/2010/04/06/…count-property-of-objects-is-being-removed/ – dshaw Apr 20 '10 at 16:27
11  
Now that Firefox 4 is out, this answer is now obsolete. Object.__count__ is gone, and good riddance too. – Yi Jiang Apr 3 '11 at 23:50
I wouldn't say the answer is obsolete. It's still an interesting strategy to encapsulate a value in a function. – chaiguy Jul 12 '11 at 13:30
should be using the prototype object to extend – SkippyChalmers Sep 1 '11 at 8:25
feedback

I just stumbled on this question. It's quite old, but since there's no accepted answer try this:

keys(myObj).length

I'm not sure how efficient this is, but it requires the least amount of code :)

link|improve this answer
3  
I don't think that's supported by ie, however, if I type keys into the safari web console I get: function (o) { var a = []; for (k in o) a.push(k); return a; } I would say thats slower than just doing the count. Plus, it doesn't take into account the hasOwnProperty. – Russell Leggett Aug 28 '09 at 14:49
The length property isn't supported in objects in Firefox; only arrays. – scotts Apr 28 '10 at 7:20
7  
Er, I think keys is a utility function in the console. That's why you can see its definition. It won't work in JavaScript code on the page. – Sidnicious May 23 '10 at 4:13
3  
Note that Object.keys is supported by Firefox 4, Chrome 6, Safari 5, IE 9 and above: var o = {"foo": 1, "bar": 2}; alert(Object.keys(o)); – Sam Dutton Sep 29 '10 at 12:26
1  
For goodness sake, keys is a console function. This will not work outside of your browser console. If you try window.keys instead of keys, you'll see that the function did not come from the browser environment, but as an utility function inherited from the console environment you're running in – Yi Jiang Apr 3 '11 at 23:44
show 2 more comments
feedback

If you are using Underscore.js you can use _.size (thanks @douwe):
_.size(obj)

Alternatively you can also use _.keys which might be clearer for some:
_.keys(obj).length

I highly recommend Underscore, its a tight library for doing lots of basic things. Whenever possible they match ECMA5 and defer to the native implementation.

Otherwise I support @Avi's answer. I edited it to add a link to the MDC doc which includes the keys() method you can add to non-ECMA5 browsers.

link|improve this answer
2  
If you use underscore.js then you should use _.size instead. The good thing is that if you somehow switch from array to object or vice versa the result stays the same. – douwe Jun 20 '11 at 11:18
_.size is a nice tip, I will update my answer. – studgeek Jul 8 '11 at 23:42
feedback

I don't think this is possible (at least not without using some internals). And I don't think you would gain much by optimizing this.

link|improve this answer
feedback

If you use jQuery try this:

$(Object).length
link|improve this answer
1  
That outputs the number of whole objects in the query, not the number of properties a single object has. Your example always outputs 1. – EnigmaCurry Mar 15 at 21:22
feedback

How I've solved this problem is to build my own implementation of a basic list which keeps a record of how many items are stored in the object. Its very simple. Something like this:

function BasicList()
{
   var items = {};
   this.count = 0;

   this.add = function(index, item)
   {
      items[index] = item;
      this.count++;
   }

   this.remove = function (index)
   {
      delete items[index];
      this.count--;
   }

   this.get = function(index)
   {
      if (undefined !== index)
        return items;
      else
        return items[index];
   }
}
link|improve this answer
feedback

Google Closure has a nice function for this... goog.object.getCount(obj)

look at goog.Object Documentation

link|improve this answer
feedback

For those who have Underscore.js included in their project you can do:

_({a:'', b:''}).size() // => 2

or functional style:

_.size({a:'', b:''}) // => 2
link|improve this answer
feedback

In jQuery, you could do this:

alert($.param({'a':33,'b':44}).split('&').length);

think of "{}", you should use:

alert($.param(obj).split('=').length);

for diyism

link|improve this answer
3  
jQuery seems like overkill. – Matchu May 19 '10 at 2:39
9  
It's not so much jQuery that's overkill, it's turning the object into a string just so you can then parse back into an array and get the length. – Daniel Earwicker Nov 11 '10 at 11:56
2  
And too bad if any of your properties have a string assigned to them containing a &. – alex Jul 17 '11 at 12:58
feedback

Your Answer

 
or
required, but never shown

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