Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Change if to ternary operator #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
giggio opened this issue Nov 7, 2014 · 0 comments
Closed

Change if to ternary operator #7

giggio opened this issue Nov 7, 2014 · 0 comments

Comments

@giggio
Copy link
Member

giggio commented Nov 7, 2014

Two expected scenarios

Return

if (something)
    return a;
else
    return b;

Becomes:

return something ? a : b;

If necessary, cast a to the expected value;

Attribution

if (something)
    v = a;
else
    v = b;

Becomes:

v = something ? a : b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant