Skip to content

Instantly share code, notes, and snippets.

View barzik's full-sized avatar

Ran Bar-Zik barzik

View GitHub Profile
// 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);
};