Skip to content

Instantly share code, notes, and snippets.

@jbrantly
Last active January 24, 2018 18:56
Show Gist options
  • Save jbrantly/b6a0792e1e79bf31d674583643b2fcfc to your computer and use it in GitHub Desktop.
Save jbrantly/b6a0792e1e79bf31d674583643b2fcfc to your computer and use it in GitHub Desktop.
(function() {
var pre = document.createElement('pre');
document.body.appendChild(pre);
console = {
log: function() {
pre.innerHTML += Array.prototype.slice.call(arguments).map(function(s) { if (s === undefined) return 'undefined'; return s }).join(" ") + "\n";
}
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment