Skip to content

Instantly share code, notes, and snippets.

@perliedman
Created October 6, 2014 13:34
Show Gist options
  • Save perliedman/00c279b96075ccf1347a to your computer and use it in GitHub Desktop.
Save perliedman/00c279b96075ccf1347a to your computer and use it in GitHub Desktop.
Explode an object to the console
function logObject(o, indent) {
var keys;
indent = indent || '';
try {
keys = Object.keys(o);
} catch (e) {
console.log(indent + '=' + o.toString());
return;
}
keys.forEach(function(k) {
console.log(indent + k);
findUndefs(o[k], indent + ' ');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment