Firebug software breakpoint?

Is there a way to set a software breakpoint in JavaScript so that Firebug stops executing the code and I can continue step by step debugging inside Firebug.

Something similar to what is done in python, for example:

import pdb; pdb.set_trace()
+5
source share
1 answer

If I understand you correctly, you can use the keyword debugger.

+10
source

All Articles