Source code

Revision control

Copy as Markdown

Other Tools

let assert = assertEq;
this.x = "OK";
this.y = "FAIL";
for (let i = 0; i < 50; i++) {
assert(x, "OK");
if (i === 40) {
this.x = "FAIL";
delete this.x;
this.x = "OK";
}
}