Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Last active October 7, 2015 08:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tcelestino/3136960 to your computer and use it in GitHub Desktop.
Save tcelestino/3136960 to your computer and use it in GitHub Desktop.
Detect browser support console
if(typeof(console) == 'undefined') console = { log : function(){} };
if(typeof(console.log) != 'function') console.log = function(){};
// color console.log
console.log("%c%s",
"color: red; background: yellow; font-size: 24px;",
"WARNING!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment