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.

I have an associative array in JSON:

var dictionary = {
    "cats": [1,2,3,4,5], 
    "dogs": [6,7,8,9,10]
};

How do I get this dictionary's keys?

I'm fine creating a separate array if necessary, but was hoping for a simpler solution.

var keys = ["cats", "dogs"];
share|improve this question
3  
dont know if it will cause issue, or if its represented the same in your source, but "dogs" has a comma after it when I think it should be a colon. – Mike_G Feb 17 '09 at 22:27
@Mike_G thx - fixed it – Simon_Weaver Oct 2 '12 at 22:51

4 Answers

up vote 55 down vote accepted
for (var key in dictionary) {
  // do something with key
}

It's the for..in statement.

share|improve this answer
thanks. wasn't getting anywhere trying a regular for loop – Simon_Weaver Feb 17 '09 at 22:31
Just noticed that there should be a colon instead of a comma between "dogs" and the array above. Assume it's due to transcription. – wombleton Feb 18 '09 at 0:08
23  
Very important to check for dictionary.hasOwnProperty(key) otherwise you may end up with methods from the prototype chain.. – Tigraine Jun 9 '11 at 6:16

Try this:

var keys = [];
for (var key in dictionary) {
  if (dictionary.hasOwnProperty(key)) {
    keys.push(key);
  }
}
share|improve this answer

Just a quick note, be wary of using for..in if you use a library (jQuery, prototype, etc.), as most of them add methods to created Objects (including dictionaries).

This will mean that when you loop over them, method names will appear as keys. If you are using a library, look at the documentation and look for an enumerable section, where you will find the right methods for iteration of your objects.

share|improve this answer

You can use: Object.keys(obj)

Example:

var dictionary = {"cats":[1,2,37,38,40,32,33,35,39,36], "dogs": [4,5,6,3,2]};

// Get the keys
var keys = Object.keys(dictionary);

See reference below for browser support. It is supported in Firefox 4.20, Chrome 5, IE9. The link below contains a code snippet that you can add if Object.keys() is not supported in your browser.

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/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.