📌  相关文章
📜  Web Worker - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:41.387000             🧑  作者: Mango

代码示例2
web worker
Web Workers are a mechanism to create a separate thread 
in parallel to your main JS program thread. 
can only communicate with each other through normal async events 
always abide by the event-loop one-at-a-time behavior 
required by run-to-completion.