Discussion Forum : Basic And Variables
Question - To determine whether one object is the prototype of (or is part of the prototype chain of) another object, one should use the
Options:
A .  isPrototypeOf() method
B .  equals() method
C .  === operator
D .  none of the mentioned
Answer: Option A
To determine whether one object is the prototype of (or is part of the prototype chain of) another object, one should use the isPrototype() method. To find out if p is the prototype of o write p.isPrototypeOf(o).

Was this answer helpful ?
Next Question
Submit Your Solution hear:

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