Which three types of objects should you use?

You are developing a web application that uses web workers to process images extracted
from an HTML5 CANVAS object on a web page.
You need to pass messages between the web workers and the web page.
Which three types of objects should you use? (Each correct answer presents a complete
solution. Choose three.)

You are developing a web application that uses web workers to process images extracted
from an HTML5 CANVAS object on a web page.
You need to pass messages between the web workers and the web page.
Which three types of objects should you use? (Each correct answer presents a complete
solution. Choose three.)

A.
JSON

B.
Window

C.
Parent

D.
String

E.
JavaScript

F.
DOM



Leave a Reply 3

Your email address will not be published. Required fields are marked *

seven − six =


Jacob

Jacob

I understand why A and D are part of the solution, but the question says “which three types of OBJECTS” and JavaScript isn’t an object..

nex-54

nex-54

yes, this is strange choose.

thundernet

thundernet

The C answer imply javascript object like this:
var obj = {
prop1:’Hello world’,
action: ‘Do something’
};