When is an Explicit Return Required in ES6 Arrow Functions?
In ES6, arrow functions implicitly return the expression within their concise body, eliminating the need for the return keyword in scenarios with a single expression. However, there are specific cases where an explicit return statement is still necessary.
When to Use return with Arrow Functions
() => { console.log('Hello'); } // Implicit return, logs 'Hello' () => { return 'Hello'; } // Explicit return, returns 'Hello'
(name) => {id: name}
Returns undefined because the braces indicate a block, interpreting id as a label rather than a property name.
Examples
Implicit Return:
(name) => name '!'; // Implicit return, returns 'Jess!'
Explicit Return:
(name) => { return name '!'; } // Explicit return, returns 'Jess!'
In summary, if an arrow function contains a block, has ambiguous syntax, or spans multiple lines, an explicit return statement is necessary to specify the function's return value. Otherwise, the expression in the arrow function's body is implicitly returned.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3