Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save alexh225/b7cfabff8487af6a638232d6731c96e9 to your computer and use it in GitHub Desktop.

Select an option

Save alexh225/b7cfabff8487af6a638232d6731c96e9 to your computer and use it in GitHub Desktop.
Console.log conditional
// will ignore console.log statements in IE and Firefox w/o Firebug ---
var debugging = false; // or true
if (typeof console == "undefined") var console = { log: function() {} };
else if (!debugging || typeof console.log == "undefined") console.log = function() {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment