You are developing an application in HTML5.
You have the following code.
You need to add an additional property to the function definition.
Which line of code should you use?

A.
NewOrder [“newProperty”] = “newProperty”
B.
NewOrder. prototype. newProperty = “newProperty”
C.
this.NewOrder. newProperty = “newProperty”
D.
NewOrder. newProperty = “newProperty”
Explanation:
http://www.w3schools.com/js/js_object_prototypes.asp
the correct answer is B, it needs to use prototype to add new property in the function definition
31
0
Yes, B is the correct answer.
15
0
Link given in answer explanation explains that you cannot add property to object constructor in this case object constructor is NewOrder.
So statement this.NewOrder. newProperty = “newProperty” is INVALID.
CORRECT ANSWER IS ‘B’
http://www.w3schools.com/js/js_object_prototypes.asp
4
0