classPerson {constructor(name) {this.name = name }getName() {returnthis.name }}classStudentextendsPerson {constructor(name) {super(name) }sayHello() {console.log(`Hello, My name is ${this.name}`) }}let student =newStudent("xiaoming")student.sayHello()//"Hello, My name is xiaoming"