Skip to content

Instantly share code, notes, and snippets.

@jacobmendoza
Forked from cowboy/log.js
Created November 20, 2012 10:59
Show Gist options
  • Save jacobmendoza/4117283 to your computer and use it in GitHub Desktop.
Save jacobmendoza/4117283 to your computer and use it in GitHub Desktop.
JavaScript: log= (insanity?)
/*
* log= (insanity?)
* http://benalman.com/
*
* Copyright (c) 2012 "Cowboy" Ben Alman
* Licensed under the MIT license.
*/
Object.defineProperty(global, 'log', {
set: function(args) {
console.log.apply(console, Array.isArray(args) ? args : [args]);
}
});
// this is less to type
log='abc';
log=['a', 'b', 'c', 1, 2, 3, true, false];
// than this is
console.log('abc');
console.log('a', 'b', 'c', 1, 2, 3, true, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment