Skip to content

Instantly share code, notes, and snippets.

@hisaos
Created September 12, 2012 10:33
Show Gist options
  • Save hisaos/3705827 to your computer and use it in GitHub Desktop.
Save hisaos/3705827 to your computer and use it in GitHub Desktop.
JS Object.keys()
var obj = {"a":1, "b":2, "c":3 };
Object.keys(obj); // this will return a list of keys in obj
for (var k in obj)
{
// this will iterate over the keys in obj
process.stdout.write(k);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment