Fix Arrow functions note syntax typo

Missing end quotes make Spread operator section render into the note.
This commit is contained in:
Dmitry Pechnikov 2018-09-17 12:20:48 +03:00 committed by GitHub
parent dac2e71cff
commit 2b749830ff
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]