What is a Web Worker?
0
- A web worker is a JavaScript which runs in the background. It exists in external files.
- It is independent of other scripts and does not affect the performance of the page.
- Web workers are usually used for CPU intensive tasks.
Sign in to add a comment
1 Answer
1
0
A web worker is a JavaScript which runs in the background. It exists in external files.
It is independent of other scripts and does not affect the performance of the page.
Web workers are usually used for CPU intensive tasks.
Your Answer
Sign in to post your answer and help the community.