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
{{ message }}
This repository was archived by the owner on May 19, 2018. It is now read-only.
According to the spec when defining multiple variables with the same name, the parser should throw and SyntaxError when using
letorconst:let foo, foo;or
let foo; let foo;From 13.2.1.1:
V8 trows an error for
letandconst, but not vorvar.