diff --git a/2014/10/arrow-functions-and-their-scope/index.html b/2014/10/arrow-functions-and-their-scope/index.html index 592884f..f539356 100644 --- a/2014/10/arrow-functions-and-their-scope/index.html +++ b/2014/10/arrow-functions-and-their-scope/index.html @@ -385,8 +385,8 @@

Relevant considerations

};

We may point some relevant considerations:

-

- arguments works just as expected

-
console.log(arguments);
+

- arguments is not created/defined for your function

+
console.log(arguments); // not defined
 

- typeof and instanceof work just fine as well

func instanceof Function; // true