Skip to content

Instantly share code, notes, and snippets.

@AaronV
Created November 2, 2015 01:07
Show Gist options
  • Save AaronV/1c0f91e75dd779eab924 to your computer and use it in GitHub Desktop.
Save AaronV/1c0f91e75dd779eab924 to your computer and use it in GitHub Desktop.
Shortcut to log to document.write
var log = (function() {
var line = 0;
return function(string) {
document.write(line++ + ": " + string + "<br/>");
console.log(string);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment