x
<html>
<head>
<script>
var Profession = function(name){
// Accessing using “this”
this.name = name;
this.display = function(){
document.write("I am a " + this.name);
};
}
</script>
</head>
<body>
<script>
var doc = new Profession("doctor");
//Accessing using “.”
doc.display();
</script>
</body>
</html>
Comments
No comments have been made yet.
Please login to leave a comment. Login now