jslint requires that function definitions are made before the calling of the function.
However, I would have thought that the dynamic compiler is smart enough to look ahead for the definition.
Is is just best practice to define your function before you call it?
In my case the logic would be more clear if I called the function before I defined it.
I don't see and option at jslint to tolerate function calls before function definitions.