You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fgarcia opened this issue
Mar 20, 2018
· 1 comment
Labels
duplicateIssues and PRs that are duplicates of other issues or PRs.replIssues and PRs related to the REPL subsystem.v8 engineIssues and PRs related to the V8 dependency.wontfixIssues that will not be fixed.
Platform: Darwin zuhause 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 x86_64
While using the node interpreter, I can't re-declare a variable after making a mistake. Something like this:
> let dx = k
ReferenceError: k is not defined
> dx
ReferenceError: dx is not defined
> let dx = 1
SyntaxError: Identifier 'dx' has already been declared
> dx = 1
ReferenceError: dx is not defined
>
The text was updated successfully, but these errors were encountered:
duplicateIssues and PRs that are duplicates of other issues or PRs.replIssues and PRs related to the REPL subsystem.v8 engineIssues and PRs related to the V8 dependency.wontfixIssues that will not be fixed.
While using the node interpreter, I can't re-declare a variable after making a mistake. Something like this:
The text was updated successfully, but these errors were encountered: