Update article.md

Correcting incorrect parameters order.
This commit is contained in:
Pascal Honoré 2017-03-28 22:18:14 +01:00 committed by GitHub
parent bc9117e70f
commit cfd23cec52

View file

@ -52,7 +52,7 @@ function sayHi(phrase, who) {
}
*!*
setTimeout(sayHi, 1000, "John", "Hello"); // Hello, John
setTimeout(sayHi, 1000, "Hello", "John"); // Hello, John
*/!*
```