Answer
Web Workers run JavaScript work away from the main page thread. • They help prevent heavy calculations from freezing the interface. • They communicate by sending messages. • They cannot directly change the DOM.
💡 Simple Example
<p>const worker = new Worker('worker.js');</p>
⚡ Quick Revision
Web Workers move heavy JavaScript work off the main interface thread.