Source code
Revision control
Copy as Markdown
Other Tools
(function() {
var x;
for (let j = 0; j < 1; j = j + 1)
x = function() { return j; };
assertEq(x(), 0);
})();
(function() {
var x;
for (let j = 0; j < 1; j = j + 1)
x = function() { return j; };
assertEq(x(), 0);
})();