Función de auto invocación ($ ()) que se puede reutilizar
$ = (function () {
console.log("first");
$ = function (){
console.log("second");
}
return $
})()
/*$() will execute console.log("second") after the first time*/
Javasper