Merge pull request #507 from dspechnikov/patch-1

Fix Arrow functions note syntax typo
This commit is contained in:
Ilya Kantor 2018-09-30 23:43:43 +03:00 committed by GitHub
commit 054a3194a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,6 +119,8 @@ function f() {
f(1); // 1
```
````
As we remember, arrow functions don't have their own `this`. Now we know they don't have the special `arguments` object either.
## Spread operator [#spread-operator]