web-maker
web-maker copied to clipboard
Undeclared variables are allowed
Webmaker allows javascript code with undeclared variables:
a = "boink"
console.log(a)
This logs "boink" but I would expect
ReferenceError: a is not defined
@KokoDoko That code seems to be working the same way on a normal page too in Chrome.