This commit is contained in:
Ilya Kantor 2019-09-02 21:58:47 +03:00
parent 1efa9c7fe8
commit 427fbea180
4 changed files with 10 additions and 11 deletions

View file

@ -18,7 +18,7 @@ function printNumbers(from, to) {
printNumbers(5, 10);
```
Using recursive `setTimeout`:
Using nested `setTimeout`:
```js run