Skip to content

Instantly share code, notes, and snippets.

@steve54b
Created June 5, 2015 17:50
Show Gist options
  • Save steve54b/f5373c3aca5caa326e52 to your computer and use it in GitHub Desktop.
Save steve54b/f5373c3aca5caa326e52 to your computer and use it in GitHub Desktop.
a = { one: 1, two: 2, three: 3, four: 4, five: 5 };
keys = Object.keys(a)
for (i = 0; i < keys.length; i++ ){
console.log(keys[i] + ": " + a[keys[i]]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment