top
, is like the boss of all frames// Right-click line number -> Add conditional breakpoint // Example condition: i === 5 && user.name === "Alice" for (let i = 0; i < 10; i++) { console.log('Loop iteration:', i); // Add conditional breakpoint here processData(i); }
// Put this in a conditional breakpoint to update variables and fix bugs: // (add1=+add1,add2=+add2) && false // This converts strings to numbers and returns false so execution continues
function calculateSum(a, b) { console.log('Calculating sum...'); console.log('a:', a); console.log('b:', b); console.log('Sum:', a + b); return a + b; } debug(calculateSum); // Set breakpoint on calculateSum function calculateSum(5, 10); monitor(calculateSum); // Monitor function calls
// Add a logpoint by right-clicking the line number and selecting 'Add logpoint' // Instead of using console.log, you can add a message like: // "'The price is', price, ' and the quantity is ', quantity" function calculateTotal(price, quantity) { let total = price * quantity; // Add logpoint here return total; }
🧩 BTW - Content scripts are for Browser extensions. They are injected into web pages and can interact with the page's DOM and JavaScript context. Background scripts are for the extension itself and run in a separate context.
💡 Pro Tip: View all your overrides and workspace changes in the Changes tool
// Step: Follows code chronologically (e.g., pauses at console.log('outside')) // Step into: Waits for async code (e.g., pauses inside setTimeout after 3s)
Why don't programmers like nature?
It has too many bugs and no debugging tool!