Update event-loop.md

This commit is contained in:
xfarrow 2024-08-06 12:40:10 +02:00
parent 0adc594656
commit 738f5311cd

View File

@ -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