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 create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article