Home »
MCQs »
Full Stack Development MCQs
Is JavaScript synchronous or asynchronous?
11. Is JavaScript synchronous or asynchronous?
- Synchronous
- Asynchronous
- Both
- Synchronous but can be used as asynchronous
Answer: D) Synchronous but can be used as asynchronous
Explanation:
JS is synchronous but it can act as asynchronous using promise and async await.