I'm interested in finding out whether there is ANY difference to declaring a function as:
Code:
function myFunction() {};
or by using a variable
Code:
myFunction = function() {};
I know they both WORK the same, but is using the variable actually adding any extra overhead to your movie? Looking in the Debugger, the results for both look identical.

Any definitive reason why one is better than the other? Thanks.