Open
Conversation
Arrow functions that just return a value have two options:
1. `() => value`; or
2. `() => { return value; }`.
If they do anything other than just return, the braces are not optional.
Therefore, in line with principle 2, perhaps we should always encourage
the first option.
Member
Author
|
const noParams = () => "foo";
let oneSimpleParam = param => "foo";
oneSimpleParam = (param) => "foo";
const oneDestructuredParam = ({ foo, bar }) => "foo";
const oneRestParam = (...params) => "foo";
const multipleParams = (first, second) => "foo";but const returnsObject = () => ({ foo: 123 });
const returnsUndefined = () => { foo: 123 };
const syntaxError = () => { foo: 123, bax: 456 }; |
f233f60 to
6bc8f67
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Arrow functions that just return a value have two options:
() => value; or() => { return value; }.If they do anything other than just return, the braces are not optional. Therefore, in line with principle 2, perhaps we should always encourage the second option.