What is step into, step out and step over in Firebug? [duplicate]
This question already has an answer here: How to use Firebug's debugger functions? 1 answer I am new to FireBug Debugger can anyone say what is step into,step over and step out Step into will cause the debugger to descend into any method calls on the current line. If there are multiple method calls, they'll be visited in order of execution; if there are no method calls, this is same as step over. This is broadly equivalent to following every individual line of execution as would be seen by the interpreter. Step over proceeds to the next line in your current scope (i.e. it goes to the next line