I am wondering how I can solve a hanging page with JS.
I have a JS loop which I\'m testing like this, but it seems to hang forever - is there a way to stop it hangin
Tight loop is likely to always exhaust computing power. I would do it in chunks. Say, divide your list into smaller lists and pause 5ms in between lists. I can provide an example if you need.