Although I used pretty code and had set up the breakpoints in \"Pretty code\" tab, debugger keeps working in minified code. (I can\'t see exactly where I am and need to continuo
simply put debugger; at top of the js code.
debugger;
ex:
function add(n1, n2) { debugger; let sum = n1 + n2; return sum; }