Home | Top | Free Ajax Editor | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Returns a Boolean value indicating whether an object exists in another object's prototype chain.
object1 . isPrototypeOf( object2 )The isPrototypeOf method returns true if object2 has object1 in its prototype chain. The prototype chain is used to share functionality between instances of the same object type. The isPrototypeOf method returns false when object2 is not an object or when object1 does not appear in the prototype chain of the object2 .
The following example illustrates the use of the isPrototypeof method.
function test(){ var re = new RegExp(); //Initialize variable. return ( RegExp.prototype.isPrototypeOf( re ) ); //Return true.Home | Top | Free Ajax Editor | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |