Source code
Revision control
Copy as Markdown
Other Tools
function f() {
var i = 0;
while (i < (this.foo = this.foo ^ 123)) {
this.prop = 1;
}
}
new f();
f();
function f() {
var i = 0;
while (i < (this.foo = this.foo ^ 123)) {
this.prop = 1;
}
}
new f();
f();