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

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!

share|improve this question

9 Answers

up vote 67 down vote accepted
Object.prototype.keys = function ()
{
  var keys = [];
  for(var i in this) if (this.hasOwnProperty(i))
  {
    keys.push(i);
  }
  return keys;
}

Edit: Since this answer has been around for a while I'll leave the above untouched. Anyone reading this should also read Ivan Nevostruev's answer below.

There's no way of making prototype functions non-enumerable which leads to them always turning up in for-in loops that don't use hasOwnProperty. I still think this answer would be ideal if extending the prototype of Object wasn't so messy.

share|improve this answer
9  
'hasOwnProperty' excludes properties on the prototypes of this object, which is useful to know. – ijw Nov 13 '09 at 11:09
1  
Answer accepted because that's how I ended up implementing it but I feel this should have been a built-in function of the language. – Pat Mar 29 '11 at 22:16
3  
Note that you should use "for (var i in this)..." to avoid creating a global variable. – Brad G. May 13 '11 at 12:31
4  
I'd avoid modifying Object.prototype - as another commenter noted below, this can easily break scripts which aren't careful about checking hasOwnProperty(). Instead, use the less OO-friendly way: define a 'keys' function if it doesn't already exist. (Firefox and Chrome both implement a native keys() function which does exactly what the OP wants - IE does not) – digitalbath May 31 '11 at 22:08
There isn't a Object.prototype.keys in ECMAScript 5. gist.github.com/1034464 – rxgx Aug 11 '11 at 18:35
show 3 more comments

There is function in modern javascript (ECMAScript 5) called Object.keys performing this operation:

var obj = { "a" : 1, "b" : 2, "c" : 3};
alert(Object.keys(obj)); // will output ["a", "b", "c"]

Compatibility details can be found here.

On Mozilla site there is also a snipped for backward compatibility:

if(!Object.keys) Object.keys = function(o){
   if (o !== Object(o))
      throw new TypeError('Object.keys called on non-object');
   var ret=[],p;
   for(p in o) if(Object.prototype.hasOwnProperty.call(o,p)) ret.push(p);
   return ret;
}
share|improve this answer
wouldn't this have been more natural? if(!Object.prototype.keys) Object.prototype.keys = function() { if (this !== Object(this)) throw new TypeError('Object.keys called on non-object'); var ret = [], p; for (p in this) if (Object.prototype.hasOwnProperty.call(this, p)) ret.push(p); return ret; } var x = { a: { A: 1, B: 2, C: 3 }, b: { A: 10, B: 20 } }; alert(x.a.keys()); – ekkis Dec 22 '11 at 0:44
1  
As I understand this Object.prototype.keys will make keys available to all sub-classes of Object, therefore for all objects. Which probably you want to if you're trying to use OOP. Anyway this really depends on your requirements. – Ivan Nevostruev Dec 22 '11 at 21:12
If you use mootools, Object.keys() should be available in all browsers. – thepeer Sep 10 '12 at 16:43

You could use Underscore.js, which is a Javascript utility library.

_.keys({one : 1, two : 2, three : 3}); 
// => ["one", "two", "three"]
share|improve this answer
Well, it's not really what was asked, because @Pat is looking for a built-in function, but it's an interesting library nonetheless, and it does not modify Object.prototype – x3ro Aug 11 '11 at 22:11
These days, I think it is much more helpful to use these nifty little library-lets than go on writing your own implementations... Anyways, in most real-world projects, we are anyways using Underscore or equivalent libraries. Personally, I'd rather go with Underscore. – Harsh Aug 22 '12 at 20:40
_.keys(obj).length to see if there are any keys. – chovy Sep 24 '12 at 21:04

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

var keys = [];
for (var k in h)keys.push(k);
share|improve this answer
1  
This also doesn't work when Object.prototype has been messed with. – Phil Jul 26 '11 at 8:40
2  
It would be better to use this, and not to "mess with" Object.prototype. It seems that everything breaks if we add things to Object.prototype: it is an extremely common idiom to loop over the keys of an array / object. – Sam Watkins May 7 '12 at 7:59

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;
}
share|improve this answer
This doesn't work, see Annan's answer – Phil Jul 26 '11 at 8:39

using jquery you can get the keys like this...

var bobject =  {primary:"red",bg:"maroon",hilite:"green"};
var keys = [];
$.each(bobject, function(key,val){ keys.push(key); });
console.log(keys); // ["primary", "bg", "hilite"]

Or -

var bobject =  {primary:"red",bg:"maroon",hilite:"green"};
$.map(bobject, function(v,k){return k;});

thanks to @pimlottc

share|improve this answer
3  
If you wanted to go this route, you might as well use JQuery.map: $.map(h, function(v,k) { return k; }); – pimlottc May 16 '12 at 14:20

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

share|improve this answer

I wanted to use the top rated answer above

Object.prototype.keys = function () ...

However when using in conjunction with the google maps API v3, google maps is non-functional.

for (var key in h) ...

works well.

share|improve this answer

if you are trying to get the elements only but not the functions then this code can help you

this.getKeys = function() {

var keys = new Array();
for(var key in this) {

    if( typeof this[key] !== 'function') {

        keys.push(key);
    }
}
return keys;

}

this is part of my implementation of the HashMap and I only want the keys, "this" is the hashmap object that contains the keys

share|improve this answer

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.