Just a quick query as I seem to be encountering some peculiar bugs and can't seem to find any information on this issue. Does the order in which functions are defined within a file make a difference?
Take for instance:
function c() {
d(); //defined after the current function
}
function d() {
//perform some action
}
Is it best practice to consider the order or should I not worry about it?