Skip to content

Instantly share code, notes, and snippets.

@lazybios
Created January 12, 2015 09:29
Show Gist options
  • Save lazybios/c41b01357cbc667d2719 to your computer and use it in GitHub Desktop.
Save lazybios/c41b01357cbc667d2719 to your computer and use it in GitHub Desktop.
var data = {"4":"d","3":"c","2":"b","1":"a"};
for(var key in data){
print "key:" + key;
print "value:" + data[key];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment