Node.js - Debugging and Profiling
Consider this code snippet run with the Node.js debugger:
What will be the output after continuing execution?
let x = 5; debugger; x += 10; console.log(x);
What will be the output after continuing execution?
