We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601d958 commit 04893aeCopy full SHA for 04893ae
1-js/06-advanced-functions/08-settimeout-setinterval/article.md
@@ -61,7 +61,7 @@ So, this will also work:
61
setTimeout("alert('Hello')", 1000);
62
```
63
64
-But using strings is not recommended, use functions instead of them, like this:
+But using strings is not recommended, use arrow functions instead of them, like this:
65
66
```js run no-beautify
67
setTimeout(() => alert('Hello'), 1000);
0 commit comments