All I Want for Christmas: Effective JavaScript — Book Giveaway

"use strict";

Such a powerful statement,with strict mode everyone will be on the same page and the code will be much cleaner.

I also like :

function a(){
   return (function(){return 5;})();    
   }

Closure :smiley: