Created
December 6, 2014 23:30
-
-
Save matthewmorrone/9e5879355ba0d4ce5f23 to your computer and use it in GitHub Desktop.
"console.log" is way too long to be typing all the time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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