'isPrototypeOf()' Example : isPrototypeOf « Javascript Methods « JavaScript Reference

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Javascript Methods » isPrototypeOf 
'isPrototypeOf()' Example

    
<html>
<body>
<script language="javascript">
function Object(firstName, lastName){
   this.firstName = firstName;
   this.lastName = lastName; 

function function1(){
   myObject.age = getAge;
   alert(myObject.age())

function function2(){
   myObject.favoriteColor = 'Blue';
   alert(myObject.favoriteColor)

function getAge(){
  return 34;
}

var myObject = new Object('first name', 'last name');
</script>
<button onclick="function2();">Add property</button>
<button onclick="function1();">Add method</button>
<button onclick="alert(myObject.constructor);">Constructor</button>
<button onclick="alert(myObject.isPrototypeOf(myObject));">PrototypeOf</button>
<button onclick="alert(myObject.hasOwnProperty('lastName'));">HasProperty</button>
</body>
</html>

    
      
      
Related examples in the same category
1.'isPrototypeOf()' Syntax, Parameters and Note
2.'isPrototypeOf()' is applied to
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.