Skip to content

Instantly share code, notes, and snippets.

@shiweifu
Created August 22, 2012 02:12
Show Gist options
  • Save shiweifu/3421486 to your computer and use it in GitHub Desktop.
Save shiweifu/3421486 to your computer and use it in GitHub Desktop.
js_obj2string
function objToString (obj) {
var str = '';
for (var p in obj) {
if (obj.hasOwnProperty(p)) {
str += p + '::' + obj[p] + '\n';
}
}
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment