var o = new F();o.constructor === F
var o = new F();
o.constructor === F
The output would be :
false
true
0
1
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
The result is true: the constructor property specifies the class.
Be The First To Comment