Função auto -invocadora ($ ()) que pode ser reutilizada
$ = (function () {
console.log("first");
$ = function (){
console.log("second");
}
return $
})()
/*$() will execute console.log("second") after the first time*/
Javasper