-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
bugSomething isn't workingSomething isn't working
Description
It seems there is an issue related to var declarations:
function main() {
var x = 'before';
console.log(x);
var x = 'after';
}
main();The expected behaviour is printing "before", while it prints "undefined".
This code work as expected:
function main() {
x = 'before';
console.log(x);
var x = 'after';
}
main();Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working