Update article.md

This commit is contained in:
LeviDing 2020-02-29 19:52:30 +08:00 committed by GitHub
parent 88120708b1
commit c039f04ef9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -300,7 +300,7 @@ So these two calls are almost equivalent:
```js ```js
func.call(context, ...args); // pass an array as list with spread syntax func.call(context, ...args); // pass an array as list with spread syntax
func.apply(context, args); // is same as using apply func.apply(context, args); // is same as using call
``` ```
There's only a minor difference: There's only a minor difference: