From 5d5048ebdda764f3ceb43bbf84f88220fc4fae82 Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Sun, 17 Jul 2022 09:30:14 +0100 Subject: [PATCH] Last Sync: 2022-07-17 09:30:14 --- Programming_Languages/NodeJS/Architecture/Event_loop.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Programming_Languages/NodeJS/Architecture/Event_loop.md b/Programming_Languages/NodeJS/Architecture/Event_loop.md index 091a443..f500f21 100644 --- a/Programming_Languages/NodeJS/Architecture/Event_loop.md +++ b/Programming_Languages/NodeJS/Architecture/Event_loop.md @@ -73,5 +73,7 @@ The phases are as follows: The terms _event loop_ and _event queue_ are often used interchangeably in the literature but in fact they are distinct. -Test **bold** -The Event Loop is the Node runtime's method of execution, the queue is the stack of tasks that are lined up and executed by the loop. We can think of the queue as being the input and the loop as what acts on the input. The queue obviously emerges from the program we write but it is scheduled, organised and sequenced by the loop. \ No newline at end of file +The Event Loop is the Node runtime's method of execution, the queue is the stack of tasks that are lined up and executed by the loop. We can think of the queue as being the input and the loop as what acts on the input. The queue obviously emerges from the program we write but it is scheduled, organised and sequenced by the loop. + +**this is bold** +_this is italic_ \ No newline at end of file