Question 5 of 10Pro Only
How do you use Web Workers to improve the performance of an application with computationally intensive work?
Sample answer preview
Web Workers run JavaScript on a separate thread from the main thread. That matters because the main thread is responsible for everything the user perceives: parsing, layout, paint, and event handling.
web workermain threadlong tasksstructured clonetransferable objectsComlink