Привет, друзья! Предлагаю вам решить небольшой квест)



class Parent {

sayHello() {

console.log('Hello');

}

}



class Children extends Parent {}



extend(Children, {

sayHello() {

super.sayHello();

console.log('Ha-Ha');

}

});



new Children().sayHello();




Напишите функцию extend, чтобы вызов new Children().sayHello(); выдавал в консоле Hello Ha-Ha