Skip to content

Instantly share code, notes, and snippets.

@allentong
Created May 30, 2012 16:10
Show Gist options
  • Save allentong/2837301 to your computer and use it in GitHub Desktop.
Save allentong/2837301 to your computer and use it in GitHub Desktop.
Console.Log Fallback for Javascript
var alertFallback = false;
if (typeof console === "undefined" || typeof console.log === "undefined") {
console = {};
if (alertFallback) {
console.log = function (msg) {
alert(msg);
};
} else {
console.log = function () { };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment