“Веб -работники API” Ответ

Что такое веб -работник

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.
Pink Person

Веб -работники API

if (typeof(Worker) !== "undefined") {
  // Yes! Web worker support!
  // Some code.....
} else {
  // Sorry! No Web Worker support..
}
naly moslih

Ответы похожие на “Веб -работники API”

Смотреть популярные ответы по языку

Смотреть другие языки программирования