vote up 7 vote down star
2

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 provides a magic __count__ property, but this isn't available in other implementations.

flag

44% accept rate

4 Answers

vote up 6 vote down check

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|flag
vote up 6 vote down

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|flag
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 at 14:49
vote up 6 vote down

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|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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