super in js code example
Example 1: super in javascirpt
class Rectangle {
constructor(height, width) {
this.name = 'Rectangle';
this.height = height;
this.width = width;
}
sayName() {
console.log('Hi, I am a ', this.name + '.');
}
get area() {
return this.height * this.width;
}
set area(value) {
this._area = value;
}
}
class Square extends Rectangle {
constructor(length) {
this.height;
super(length, length);
this.name = 'Square';
}
}
Example 2: extended class call method from super in javascript
class Person {
constructor(name, age) {
this.name = name;
this.age = age;
}
greet() {
console.log(`Hi, all my name is ${this.name}`);
}
}
class Employee extends Person {
constructor(name, age, employer) {
super(name, age);
this.employer = employer;
}
greeting() {
super.greet();
console.log(`I'm working at ${this.employer}`);
}
}
let Steve = new Employee('Xman', 25 , 'Skynet');
Steve;
Steve.greeting();
Example 3: javascript super
class Parent {
constructor() {}
method() {}
}
class Child extends Parent {
constructor() {
super()
super.method()
}
}
Example 4: Super in javascript
super([arguments]);
super.functionOnParent([arguments]);