Skip to content

Instantly share code, notes, and snippets.

@matthewmorrone
Created December 6, 2014 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewmorrone/9e5879355ba0d4ce5f23 to your computer and use it in GitHub Desktop.
Save matthewmorrone/9e5879355ba0d4ce5f23 to your computer and use it in GitHub Desktop.
"console.log" is way too long to be typing all the time
var log = console.log.bind(console);
/*
alternatively:
log = console.log.bind(console);
window.log = console.log.bind(console);
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment