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
Lets say I run the following code in the REPL
let url = require('url') let parsed = url.parse(null)
It correctly spews out a type error
TypeError: Parameter "url" must be a string, not object
However, if I subsequently try to define parsed I get errors
parsed
parsed = 1 ReferenceError: parsed is not defined let parsed = 1 SyntaxError: Identifier 'parsed' has already been declared
The text was updated successfully, but these errors were encountered:
Unfortunately, this is a known issue. See recent #13919 and the reference there.
Sorry, something went wrong.
I shall close this issue for now as a duplicate, but feel free to ask any more questions here or in the similar issues.
let
No branches or pull requests
Lets say I run the following code in the REPL
It correctly spews out a type error
However, if I subsequently try to define
parsed
I get errorsThe text was updated successfully, but these errors were encountered: