Exactera interview question

Is JavaScript synchronous or asynchronous?

Interview Answer

Anonymous

Sep 28, 2025

By default JavaScript is synchronous. However, it supports asynchronous operations using mechanisms like setTimeout, promises, and async/await, all of which rely on the event loop.