Node.js - Debugging and Profiling
Consider this Node.js code snippet debugged in VS Code with a breakpoint on line 3:
When paused at the breakpoint on line 3, what will be the value of
1 const x = 5; 2 const y = 10; 3 const sum = x + y; 4 console.log(sum);
When paused at the breakpoint on line 3, what will be the value of
sum in the debugger?