Skip to content

Instantly share code, notes, and snippets.

@neko-fire
Created May 10, 2012 07:40
Show Gist options
  • Save neko-fire/2651725 to your computer and use it in GitHub Desktop.
Save neko-fire/2651725 to your computer and use it in GitHub Desktop.
JavaScript: universal console.log func
var log = function(str) {
if (typeof console != 'undefined' && console != null) console.log(str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment