Where does web worker(s) script run?

Options
- in foreground
- in background
- both a and b
- Can’t determine


CORRECT ANSWER : in background

Discussion Board
in background

Web Workers provide a simple means for web content to run scripts in background threads.

Sapna 02-27-2017 12:24 AM

web worker(s) script.

Correct Answer : in background.

When executing scripts in an HTML page, the page becomes unresponsive until the script is finished.
A web worker is a JavaScript that runs in the background, independently of other scripts, without affecting the performance of the page. You can continue to do whatever you want: clicking, selecting things, etc., while the web worker runs in the background.

Jayesh Sonar 02-23-2015 02:01 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement