From 103864d0b9b0c58cdd563ea06ac698e795fef3ca Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Wed, 18 Jul 2018 19:50:11 +0300 Subject: [PATCH] Update Event-loop.md --- glossary/Event-loop.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glossary/Event-loop.md b/glossary/Event-loop.md index 107f25a4a..fd3f239db 100644 --- a/glossary/Event-loop.md +++ b/glossary/Event-loop.md @@ -1,4 +1,5 @@ ### Event loop -The event loop handles all asynchronous callbacks. Callbacks are queued in a loop, while other code runs, and will run one by one when the response for each one has been received. +The event loop handles all asynchronous callbacks. +Callbacks are queued in a loop, while other code runs, and will run one by one when the response for each one has been received. The event loop allows JavaScript to perform non-blocking I/O operations, despite the fact that JavaScript is single-threaded.