In this article we will discuss, how to create an object using constructor function in JavaScript. An object defined with the function constructor lets to have multiple instances of that object. When changes made to one instance, will not affect the other instances.
<script type="text/javascript">
var stud = function () {
this.name = "paul";
}
// Create an instance of student
// student.name will return paul
var student = new stud();
// Create an other instance ofstudent
// newStudent.name will returnpaul
var newStudent = new stud();
// Change the name property of thenewStudent object
newStudent.name = "michael";
// Retrieve the name property fromthe original student object
// Notice that name is not changedto michael, it is still paul
document.write(student.name);
</script>
Output:
paul
Post your comments / questions
Recent Article
- How to use if else statement in c++?
- How to use godaddy domain name with another godaddy hosting account?
- Restore of database 'DATABASE' failed. (Microsoft.SqlServer.Management.RelationalEngineTasks)
- How to programmatically modifying the AppSetting value in web.config using c#?
- TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined
- How to calculate the age from jQuery ui datepicker using c#?
- How to calculate days difference between two dates in c#?
- Changing date format in jQuery ui datepicker
Related Article