Question d’entretien chez Nisum

What is the event loop?

Réponse à la question d'entretien

Utilisateur anonyme

18 avr. 2016

The Event Loop is a queue of callback functions. When an async function executes, the callback function is pushed into the queue. The JavaScript engine doesn't start processing the event loop until the code after an async function has executed.

4