I noticed strange behaviour of JS Bin runner when I execute the following code:
var ask = prompt("test");
while(ask!=="yes"){
ask = prompt("test");
}
I get this kind of error:
Exiting potential infinite loop at line 4. To disable loop protection: add "// noprotect" to your code
I was wandering why is that happening ? (The execution of that code works fine in site code)