What happens when you use the return keyword in a single-line arrow function?
- The function returns undefined
- The function returns the value after the arrow
- The function throws an error
- The function returns an array
In arrow functions, if the body is a single expression, it is implicitly returned. So, using the return keyword is optional. Option B is correct.
Loading...
Related Quiz
- Can a for...of loop be used to iterate over a generator function's yielded values?
- How do enhanced object literals in ES6 facilitate the assignment of variables as properties of objects?
- In advanced functional composition, ________ functions can be used to enhance readability.
- In a scenario where you are extending a base class, how would overriding and extending methods impact the functionality of your derived class?
- Consider a library with multiple utility functions; how would you structure the exports to optimize for tree shaking?