Skip to content

Instantly share code, notes, and snippets.

@orioltf
Created November 28, 2013 12:34
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 orioltf/7691209 to your computer and use it in GitHub Desktop.
Save orioltf/7691209 to your computer and use it in GitHub Desktop.
Create shortcut to console.log() in Chrome
var log = console.log.bind(console);
var warn = console.warn.bind(console);
var info = console.info.bind(console);
var error = console.error.bind(console);
var table = console.table.bind(console);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment