'Object' Example : Object : Javascript Objects : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  Javascript Objects   » [  Object  ]   
 



'Object' Example

Please note that some example is only working under IE or Firefox.

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

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

function function2(){
    myObject.favoriteColor = 'Blue';
    alert(myObject.favoriteColor)
}
function function3(){
    return 34;
}
var myObject = new Object('John', 'Smith');
</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








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.