Node.js - Debugging and Profiling
Consider this Node.js snippet debugged in VS Code with a breakpoint set on line 4:
When the debugger pauses at line 4, what value will the variable
1 let a = 3; 2 let b = 7; 3 let total = a + b; 4 console.log(total);
When the debugger pauses at line 4, what value will the variable
total hold?