Node.js - Debugging and Profiling
What will be logged to the console when running this code?
let count = 0;
setTimeout(() => {
count += 5;
console.log(count);
}, 0);
console.log(count);
