HomeAbout

debugger

What is debugger in browser

Acts as a breakpoint during JS runtime.

function someFunction(){ // some execution of code debugger; // stops here // more code }

When stopped, browser will navigate to source tab of the developer tabs.

AboutContact