vote up 3 vote down star

I know in javascript Objects double as hashes but i have been unable to find a built in function to get the keys

var h = {a:'b',c:'d'};

I want something like

var k = h.keys() ; // k = ['a','c'];

It is simple to write a function myself to iterate over the items and add the keys to an array that I return, but is there a standard cleaner way to do that ?

I keep feeling it must be a simple built in function that I missed but I can't find it!

flag

5 Answers

vote up 8 vote down check
Object.prototype.keys = function ()
{
  var keys = [];
  for(i in this) if (this.hasOwnProperty(i))
  {
    keys.push(i);
  }
  return keys;
}
link|flag
'hasOwnProperty' excludes properties on the prototypes of this object, which is useful to know. – ijw Nov 13 at 11:09
vote up 0 vote down

Thanks all,

@Annan,

I'll accept your answer because that's how I ended up implementing it but I feel this should have been a built-in function of the language.

link|flag
vote up 1 vote down

I believe you can loop through the properties of the object using for/in, so you could do something like this:

function getKeys(h) {
  Array keys = new Array();
  for (var key in h)
    keys.push(key);
  return keys;
}
link|flag
vote up 1 vote down

This is the best you can do, as far as I know...

var keys = [];
for (var k in h)keys.push(k);
link|flag
vote up 1 vote down

I'm just jumping into javascript but this post may help you.
http://dean.edwards.name/weblog/2006/07/enum/

link|flag

Your Answer

Get an OpenID
or

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