I’m not well familiar with JS, as I mostly develop desktop applications.
But I do know how to use Firebug 😉
I’m wondering how can I find the sequence those much *.js files loaded with HTML being executed and where it starts from? I have no clue how javascript code works.. And I need your tips on it.
I just would like to debug one website page and see how it works (like I do it in MS Studio by stepping into code which everytime starts from the same entry point).
Where do javacript code starts?
I’m sorry if my question sounds foolish..
Javascript starts at the top of the file.
Everything gets executed from top to bottom and there is no such ‘start method’ you see in codes like (OO) Java or other desktop languages.
You can see it as a procedural language in this case. You can do Object Oriented-like things in Javascript though.