Se trata de esto
Código Javascript:
Ver original
(function(f) {
window.setTimeout = f(window.setTimeout); // overwrites the global function!
window.setInterval = f(window.setInterval); // overwrites the global function!
})(function(f) {
return function(c, t) {
var a = [].slice.call(arguments, 2); // gathers the extra args
return f(function() {
c.apply(this, a); // passes them to your function
}, t);
};
});
no quiero que me expliquen este código ,sino lo que quiero saber es que significa ( //acá hay código ) ( //acá hay código ) ;
o mejor sería si me dieran un enlace donde pueda encontrar esa información , gracias.
 
  
 

 ( expresion ) (expresion )
 ( expresion ) (expresion ) 








