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.
Loading...
Related Quiz
- How do higher-order functions benefit from using arrow functions introduced in ES6?
- Currying in JavaScript can help in creating functions that are ________ to specific scenarios.
- What is a potential pitfall when using multiple named exports in an ES6 module?
- To check if a Map contains a certain key, use the _________ method.
- Mixins in ES6 are commonly used for adding _________ to classes without using inheritance.