Introduction to Web Workers

added by JavaScript Kicks
3/7/2019 2:39:34 PM

1017 Views

Web Workers provides an API where we can run a JS code in another thread other than the main thread of script runs in. When we run CPU intensive op in the main thread, we will be greeted by the familiar "unresponsive" script dialog.


0 comments