jQuery setTimeout() Function Examples

I don’t think that passing function.apply or function.call as the first parameter of setTimeout would work the same way as function.bind. apply and call call the function immediately, so setTimeout will try to use return value of function, not the function itself.

1 Like