Skip to content

Instantly share code, notes, and snippets.

@bsa7
Created February 21, 2016 20:00
Show Gist options
  • Save bsa7/5b3f837896a7819ae98c to your computer and use it in GitHub Desktop.
Save bsa7/5b3f837896a7819ae98c to your computer and use it in GitHub Desktop.
Iterate object keys
t = document.getElementById(elementid)
for(var key in t) {console.log('key: ' + key + '\n' + 'value: ' + t[key]);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment