Looking at a possible implementation of setTimeout makes it clearer:
function setTimeout(func, delay) { // wait for the delay to complete.. func(); }
Looking at a possible implementation of setTimeout makes it clearer:
Here you can see that when the function is called there's nothing to the left of it.