admin管理员组文章数量:1344339
I am learning JavaScript and am quite new in Programming and happened to land upon these infinite loops which were said to go on forever and crash the browser, but when I created one with these codes:
i=0;
while (i<10) {document.write(i);}
The browser just kept on going to load it and never did but the browser didn't crash?
So is it that the browsers these days are powerful enough to withstand infinite loops, or do I need a different infinite loop?
I am learning JavaScript and am quite new in Programming and happened to land upon these infinite loops which were said to go on forever and crash the browser, but when I created one with these codes:
i=0;
while (i<10) {document.write(i);}
The browser just kept on going to load it and never did but the browser didn't crash?
So is it that the browsers these days are powerful enough to withstand infinite loops, or do I need a different infinite loop?
- You could try an infinite loop that adds information to an array. – Sanchit Commented Jan 7, 2013 at 11:04
- Did you get any javascript errors? – Leandro Barreto Commented Jan 7, 2013 at 11:18
- "withstand infinite loops" - there is a difference between "infinite loop" and "continuous processing". I assume you're interested in the latter. In that case search for setTimeout function and see how you can partition your work in correct chunks – Liviu T. Commented Jan 7, 2013 at 11:48
1 Answer
Reset to default 11Yes, Infinite loops do still crash browsers (Or just the tab the JS is running in). However, most modern browsers can detect if a script's hanging / running a infinite loop, and give you the option to abort the script.
Also, a more efficient way to create a infinite loop, would be:
while(true);
本文标签: Do infinite loops of JavaScript crash the browsers these daysStack Overflow
版权声明:本文标题:Do infinite loops of JavaScript crash the browsers these days? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743748335a2532176.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论