From 738f5311cdc6b726eff297f0014cb5212fbc9d16 Mon Sep 17 00:00:00 2001 From: xfarrow <49845537+xfarrow@users.noreply.github.com> Date: Tue, 6 Aug 2024 12:40:10 +0200 Subject: [PATCH] Update event-loop.md --- async-await/event-loop.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/async-await/event-loop.md b/async-await/event-loop.md index 0f22cbf..6b2e133 100644 --- a/async-await/event-loop.md +++ b/async-await/event-loop.md @@ -10,11 +10,9 @@ examples: 1. ```javascript - setTimeout(() => console.log('test'), 1000); - ``` -console.log('test') will be put in the Event Loop. +`console.log('test')` will be put in the Event Loop. 2. ```javascript