Q. What does this code do?
Code:setTimeout(() => console.log('Hello'), 0);
β
Correct Answer: (B)
Logs after 0 ms delay
Explanation: Even with 0 ms, the function is added to the event queue.