Skip to content

Instantly share code, notes, and snippets.

@alekskorovin
Forked from nuxodin/easy-console.js
Created December 18, 2016 18:05
Show Gist options
  • Save alekskorovin/faebae80d5a04706c3d369a66001ed3b to your computer and use it in GitHub Desktop.
Save alekskorovin/faebae80d5a04706c3d369a66001ed3b to your computer and use it in GitHub Desktop.
Like to write to the console like this "console = xyz" instead of "console.log(xyz)" ?
!(function(){
var original = console;
Object.defineProperty(window, 'console', {
get:function(){
return original;
},
set:function(value){
original.log(value)
}
})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment