constructor meaning in javascript code example
Example 1: javascript constructor function
function ClassMates(name,age){
this.name=name;
this.age=age;
this.displayInfo=function(){
return this.name + "is " + this.age + "year's old!";
}
}
let classmate1 = new ClassMates("Mike Will", 15);
classmate.displayInfo();
Example 2: constructors javascript
function Bird() {
this.name = "Albert";
this.color = "blue";
this.numLegs = 2;
}
Example 3: how to create a constructor in javascript
function Bird() {
this.name = "Albert";
this.color = "blue";
this.numLegs = 2;
}
let blueBird = new Bird();
Example 4: JavaScript constructor function
function Person () {
this.name = 'John',
this.age = 23
}
const person = new Person();