InterviewSolution
Saved Bookmarks
| 1. |
The object that looks to the thread that creates it is _______________(a) Window(b) Worker(c) Element(d) HashI have been asked this question in quiz.I want to ask this question from Web Workers topic in chapter Caching, Debugging and Animation of JavaScript |
|
Answer» CORRECT option is (b) Worker To explain: A web worker is a JavaScript running in the background, without AFFECTING the performance of the page. The Worker object: this is what a worker looks like from the OUTSIDE to the THREAD that creates it. |
|