JSPlaygrounds icon indicating copy to clipboard operation
JSPlaygrounds copied to clipboard

Infinite loop eval

Open VincentDamour opened this issue 8 years ago • 1 comments

When writing a while loop, the code will eval and loop infinitely. This is the code I wrote before my browser freeze:

let i = 0;
while(i < 10) { }

I was going to write i++ inside the loop.

I would suggest using lemming.js to fix this.

VincentDamour avatar Jul 12 '16 00:07 VincentDamour

Great suggestion, I was looking into using a webworker for execution. Lemming looks like a good approach.

StephenGrider avatar Jul 12 '16 20:07 StephenGrider