Skip to content

Instantly share code, notes, and snippets.

@nerdyworm
Created October 12, 2012 01:04
Show Gist options
  • Save nerdyworm/3876762 to your computer and use it in GitHub Desktop.
Save nerdyworm/3876762 to your computer and use it in GitHub Desktop.
stringThings = function(array) {
var string, v, i, len;
string = "";
for (i = 0, len = array.length; i < len; i++) {
v = array[i];
string += "" + v.key + v.value;
}
return string;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment