diff --git a/1-js/06-advanced-functions/08-settimeout-setinterval/4-settimeout-result/task.md b/1-js/06-advanced-functions/08-settimeout-setinterval/4-settimeout-result/task.md index faca4600..667c8ffa 100644 --- a/1-js/06-advanced-functions/08-settimeout-setinterval/4-settimeout-result/task.md +++ b/1-js/06-advanced-functions/08-settimeout-setinterval/4-settimeout-result/task.md @@ -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;