Can a setTimeout callback run before the specified delay in JavaScript?
No. The callback never runs before the delay. It may run later (if the call stack is busy or microtasks are queued), but never earlier than the delay.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in setTimeout Interview Questions in JavaScript
1, 3, 2. The timer callback goes to the macrotask queue and runs after the synchronous code finishes.
Because promise callbacks go to the microtask queue, which the event loop drains completely before touching the macrotask queue where setTimeout callbacks live.
3, 3, 3. var is function-scoped; all callbacks share one i, which is 3 by the time they run. Use let to fix this (logs 0, 1, 2).
Still have questions?
Browse all our FAQs or reach out to our support team
