This commit is contained in:
Brent Guffens 2018-01-30 11:18:27 +01:00 committed by GitHub
parent f73236def6
commit eb5c3a0d67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,14 +6,14 @@ importance: 5
In the code below there's a `setTimeout` call scheduled, then a heavy calculation is run, that takes more than 100ms to finish.
When the scheduled function will run?
When will the scheduled function run?
1. After the loop.
2. Before the loop.
3. In the beginning of the loop.
What `alert` is going to show?
What is `alert` going to show?
```js
let i = 0;