If an arrow function is written with a single expression, the return value is the result of the expression without using the ________ keyword.
- Break
- Return
- Yield
- Exit
In arrow functions, if the function body consists of a single expression, you can omit the curly braces {} and the return keyword. The return value will be the result of the expression automatically.
Loading...
Related Quiz
- When using Object.keys() on an object with Symbol keys, these keys will __________ be included in the returned array.
- When constructing an object to manage user data, how do enhanced object literals in ES6 simplify the process?
- What happens when undefined is passed to a function with a default parameter?
- To handle errors within a generator function, the _________ method can be used alongside next().
- The method Symbol.for(__________) is used to create Symbols that are __________ across different scopes.