I want to do what setTimout does, manually, with no timeout.
setTimeout(function,0,args);
Just call a function and pass it an array of arguments, without knowing or caring how many arguments were there.
Basically I want to proxy the function call through another function.
I'm bad with terminology, sorry.