Skip to content
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

[idea?] Using ternary with array push operator #945

Open
nerixim opened this issue Aug 26, 2024 · 0 comments
Open

[idea?] Using ternary with array push operator #945

nerixim opened this issue Aug 26, 2024 · 0 comments

Comments

@nerixim
Copy link

nerixim commented Aug 26, 2024

When using ternary with array push operator, the result may surprise you depending on your knowledge of operator precedence.

array = []

# bad
array << true ? 1 : 0
=> 1
# array = [true]

# good (?)
array << (true ? 1 : 0)
# array = [1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant