Declaring multiple const variables on single line causes crash
-
As the title says.
const var a=0, b=1, c=2
== crash.No problem with
var
orreg
though.Btw what's the difference between
const a = 0
andconst var a = 0
? -
Bump bump, especially interesting the const vs const var thingy. @Christoph-Hart ...
-
const and const var is the same. Not sure about the multiple duplication thingie, but just don't :)