anonymous / arguments / callee / chain / jsUn estilo interesante de llamar a funciones anónimas en JavaScript(function(a){ console.log(a); return arguments.callee; // return the function for next calling})(1)(2)(3)(4); Leer más