Có, các lớp cha và con có thể có một phương thức có cùng tên.
Ví dụ
class Parent { constructor(parentValue) { this.parentValue = parentValue; } //Parent class method name which is same as Child Class method name. showValues() { console.log("The parent method is called....."); console.log("the value is="+this.parentValue); } } class Child extends Parent { constructor(parentValue,childValue){ super(parentValue); this.childValue = childValue; } //Child class method name which is same as Parent Class method name. showValues() { console.log("The child method is called....."); console.log("The value is="+`${this.childValue}`); } } var parentObject = new Parent(100); parentObject.showValues(); var childObject = new Child(400,500); childObject.showValues();
Để chạy chương trình trên, bạn cần sử dụng lệnh sau -
node fileName.js.
Đây, tên tệp của tôi là demo195.js.
Đầu ra
Điều này sẽ tạo ra kết quả sau -
PS C:\Users\Amit\javascript-code> node demo195.js The parent method is called..... the value is=100 The child method is called..... The value is=500