Solved

Identify the Significance of This Keyword in the Following Constructor

Question 49

Multiple Choice

Identify the significance of this keyword in the following constructor function. function objClass(parameters) { this.prop1 = value1; this.prop2 = value2; … this.method1 = function1; this.method2 = function2; … }


A) It refers to the parameters used by the constructor function.
B) It refers to the properties associated with the object class.
C) It refers to any method associated with the object class.
D) It refers to any object instance of the object class.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions