-
Notifications
You must be signed in to change notification settings - Fork 30
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
Can .. be used instead #10
Comments
Technically we could use "..", but I don't think it's visually distinct enough. We want it to look pleasing, but obviously different from property lookup. |
[2, 7, 1, 8]
..push(3)
..shift()
..sort(); // => [1,3,7,8] |
Just remember that
vs
|
Would have loved to use Too much potential for confusion and I'd prefer to see |
Agreed, let's stick with |
It looks more similar to . and Dart uses it as well.
Though it might be a problem with 1..toString()
The text was updated successfully, but these errors were encountered: