Skip to content

Instantly share code, notes, and snippets.

@barzik
Forked from RonnyO/console.lol.js
Created January 16, 2013 10:03
Show Gist options
  • Save barzik/4546053 to your computer and use it in GitHub Desktop.
Save barzik/4546053 to your computer and use it in GitHub Desktop.
// console.lol by @RonnyOrbach, idea by Erez Avny
if (typeof console != 'undefined') console.lol = function(){
var args = [].slice.call(arguments, 0);
args.unshift("LOL");
args.push("LOLOLOL!")
console.log.apply(console, args);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment