Can you use the arguments object inside an arrow function?

  • Yes, arrow functions have access to the arguments object
  • No, arrow functions do not have access to the arguments object
  • Only if the arrow function is declared with the 'arguments' keyword
  • Yes, but only in strict mode
Arrow functions do not have their own 'arguments' object. They inherit it from the enclosing scope, which may lead to unexpected behavior. Option B is correct.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *