Which DevTools feature allows exploring objects interactively during a debugging session?
function processData(data) {
// At this point, I'm not sure what's in the data object
// How can I explore it in the console?
}
The live REPL (Read-Eval-Print Loop) in the console provides powerful debugging capabilities: 1) When execution is paused at a breakpoint, the console gives access to the current execution context, 2) You can evaluate expressions, call functions, and explore objects interactively, 3) All variables in scope at the breakpoint location are accessible, 4) Complex expressions can be tested to verify expected behavior, 5) Objects can be modified and the effects observed when execution continues, 6) This interactive exploration is far more powerful than static logging, 7) You can use console methods like console.dir() or console.table() for better visualization, 8) This real-time interaction with the paused application state is one of the most powerful features of modern debugging tools.