https://www.notion.so/Prototype-in-JavaScript-f11c3f72963b480f8bf8822bbb134650
All JavaScript objects inherit properties and methods from a prototype.
Date
objects inherit fromDate.prototype
Array
objects inherit fromArray.prototype
Person
objects inherit fromPerson.prototype
The Object.prototype
is on the top of the prototype inheritance chain:
Date
objects, Array
objects, and Person
objects inherit from Object.prototype
Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function Person(first, last, age, eyecolor) {
this.firstName = first;
this.lastName = last;
this.age = age;
this.eyeColor = eyecolor;
}
Person.prototype.nationality = "English";
Person.prototype.name = function() {
return this.firstName + " " + this.lastName;
};
var myFather = new Person("John", "Doe", 50, "blue");
var myMother = new Person("Sally", "Rally", 48, "green");
❗Please do not add a new property to an existing object constructor as below. That is a wrong way.
1
Person.nationality = "English";