'isPrototypeOf()' Syntax, Parameters and Note : isPrototypeOf « Javascript Methods « JavaScript Reference

'isPrototypeOf()' Syntax, Parameters and Note

Note:

Is the specified object an instance of Object. 
Returns true or false.
    
Syntax:
    
objectName.isPrototypeOf(param1)

Parameters:
    param1   Required; the object to check.

    

      
      








Related examples in the same category

1.'isPrototypeOf()' Example
2.'isPrototypeOf()' is applied to