Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.)

share|improve this question
Related: stackoverflow.com/questions/5223/… – ripper234 Jan 31 '12 at 10:15

15 Answers

up vote 328 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)

share|improve this answer
3  
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
16  
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
21  
-1 (-200 if I could) This not only iterates through the object but also creates a whole new array with all its keys, so it completely fails at answering the question. – GetFree Jun 22 '12 at 14:28
4  
It seems much faster than doing the for (at least on Chrome 25): jsperf.com/count-elements-in-object – fserb Nov 18 '12 at 15:51
show 8 more comments

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;
share|improve this answer
What is the purpose of the check (Object.prototype.hasOwnProperty.call(obj, k))? – styfle May 14 '12 at 21:04
3  
@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 '12 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 '12 at 16:24
7  
@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 May 23 '12 at 20:59
1  
Would not it better to use this version ? developer.mozilla.org/en-US/docs/JavaScript/Reference/… – Xavier Delamotte Jan 23 at 14:28
show 1 more comment

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.

share|improve this answer
3  
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

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.

share|improve this answer
12  
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
12  
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

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 :)

share|improve this answer
4  
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
8  
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
2  
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

If you are actually running into a performance problem 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.

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.

share|improve this answer
2  
This should be a comment, how is this an answer? – hitautodestruct Oct 7 '12 at 14:45
@hitautodestruct Because he offers a solution. – crush Feb 10 at 21:12
@crush This answer seems to suggest things to do rather than give a direct solution. – hitautodestruct Feb 11 at 6:40
@hitautodestruct it suggests an answer: incrementing/decrementing an encapsulated count with the add/remove methods. There is another answer exactly like this below. The only difference is, Confusion did not offer any code. Answers are not mandated to provide code solutions only. – crush Feb 11 at 14:25
@crush Right you are, but they should not start with a question. Fixed :) – hitautodestruct Feb 11 at 18:40

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

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

or functional style:

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

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.

share|improve this answer

As stated by Avi Flax http://stackoverflow.com/a/4889658/1047014

Object.keys(obj).length

will do the trick for all enumerable properties on your object but to also include the non-enumerable properties you can instead use the Object.getOwnPropertyNames. Here's the difference:

var myObject = new Object();

Object.defineProperty(myObject, "nonEnumerableProp", {
  enumerable: false
});
Object.defineProperty(myObject, "enumerableProp", {
  enumerable: true
});

console.log(Object.getOwnPropertyNames(myObject).length); //outputs 2
console.log(Object.keys(myObject).length); //outputs 1

console.log(myObject.hasOwnProperty("nonEnumerableProp")); //outputs true
console.log(myObject.hasOwnProperty("enumerableProp")); //outputs true

console.log("nonEnumerableProp" in myObject); //outputs true
console.log("enumerableProp" in myObject); //outputs true

As stated here this has the same browser support as Object.keys

However, in most cases, you might not want to include the nonenumerables in these type of operations, but it's always good to know the difference ;)

share|improve this answer

If jQuery above does not work, then try

$(Object.Item).length
share|improve this answer

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];
   }
}
share|improve this answer

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

look at goog.Object Documentation

share|improve this answer

For those that have Ext JS 4 in their project you can do:

Ext.Object.getSize(myobj);

The advantage of this is that it'll work on all Ext compatible browsers (IE6-IE8 included), however, I believe the running time is no better than O(n) though, as with other suggested solutions.

share|improve this answer

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

share|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
3  
And too bad if any of your properties have a string assigned to them containing a &. – alex Jul 17 '11 at 12:58

If you use jQuery try this:

$(Object).length
share|improve this answer
6  
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 '12 at 21:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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