DEV Community

Discussion on: How asynchronous works in JavaScript. Event Loop concept

Collapse
 
miketalbot profile image
Mike Talbot ⭐

Well put article, async is so important for UX. On the subject, if you have long running Javascript jobs that might mess up frame rates - such as big sorts or filters etc that happen on the client side, then you can also make those async using my js-coroutines library. In this way you can use the techniques described here to make client side processing silky smooth too.

Collapse
 
upplabs profile image
UppLabs

Thanks!