Skip to content

Instantly share code, notes, and snippets.

@maggocnx
Last active December 28, 2015 04:48
Show Gist options
  • Save maggocnx/7444706 to your computer and use it in GitHub Desktop.
Save maggocnx/7444706 to your computer and use it in GitHub Desktop.
Find console.log which outputs undefined
origLog = console.log;
console.log = function(arg){
if(typeof arg == "undefined")
console.trace(undefined);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment