Script speedup: Running functions asynchronously
This is something I’ve seen a long time ago, but never actually had the script for. If you’ve got a slow process in your loop, for example: for (var i=0;i<jedArray.length;i++) { reallySlowFunction("bob", "ted", fredObj, jedArray[i]); } You can just … Continue reading