I'm currently debugging the next tier of my website in Firefox and found a really weird bug in my JavaScript. Is it true, in Firefox, that functions need to be defined above any lines of code referencing those functions? That seems really strange to me.
Here's a simplified version of what was causing bugs:
var myClass = new MyClass(myCallback);
function myCallback() {
// code
}
It threw the following bug: Error: myCallback is not defined
And here's what i needed to do for it to work in Firefox:
var myCallback = function() {
// code
}
var myClass = new MyClass(myCallback);
So my question is: Is this normal behavior or was something else going on? I mean, do I need to take this into consideration when coding in the future?