Source code
Revision control
Copy as Markdown
Other Tools
function test() {
for(var e=1.2; true; e=20.2) {
if (e > 10)
break;
}
}
test();
function test() {
for(var e=1.2; true; e=20.2) {
if (e > 10)
break;
}
}
test();