Source code

Revision control

Copy as Markdown

Other Tools

function f1() {
gc();
}
function f2() {
with(this) {};
f1();
}
function f3() {
f2();
}
function f4() {
f3();
}
f3();
f3();
f4();