Skip to content

Commit cfd23ce

Browse files
authored
Update article.md
Correcting incorrect parameters order.
1 parent bc9117e commit cfd23ce

File tree

1 file changed

+1
-1
lines changed
  • 1-js/06-advanced-functions/08-settimeout-setinterval

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/08-settimeout-setinterval/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function sayHi(phrase, who) {
5252
}
5353

5454
*!*
55-
setTimeout(sayHi, 1000, "John", "Hello"); // Hello, John
55+
setTimeout(sayHi, 1000, "Hello", "John"); // Hello, John
5656
*/!*
5757
```
5858

0 commit comments

Comments
 (0)