diff --git a/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md b/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md index c2ca8168..409c6dc1 100644 --- a/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md +++ b/1-js/06-advanced-functions/02-rest-parameters-spread-operator/article.md @@ -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]