We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
x = [[5]]; x[0] [0]
x = [[5]]; x [0][0]
x = {foo: 5}; x .foo
JS allows all of these.
The text was updated successfully, but these errors were encountered:
If we allow new lines, this creates an unfortunate uncertainty:
arr = [3,4,5] x = arr [0]
This could be interpreted in two different ways.
Less of a problem with .foo, because it's not a valid expression.
.foo
Sorry, something went wrong.
No branches or pull requests
x = [[5]]; x[0] [0]
is allowed, butx = [[5]]; x [0][0]
is not.x = {foo: 5}; x .foo
is not allowed.JS allows all of these.
The text was updated successfully, but these errors were encountered: