1. Page
2. Blocks
3. Requests
4. Filter
5. Calendar
Page
и в итоге получаемPage extends Blocks
Blocks extends Requests
class Sounds {
say() {
console.log(`what the ${this.name} say`)
console.log(this)
}
}
class Animal {
constructor(name) {
this.name = name
}
}
Object.assign(Animal.prototype, new Sounds().__proto__)
const animal = new Animal('fox')
animal.say()
Object.assign(Animal.prototype, new Sounds().__proto__, Moves)
в таком случае тоже не работает? --
?class="block__action block__action--edit"
--
-
class="block__award-tooltip-close"
block__award
это не является элементом, а все, что после -
модификаторы