Exactera interview question

Is JavaScript synchronous or asynchronous?

Interview Answer

Anonymous

28 Sept 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.