Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
let arr=[{ key1:1, key2:2, key3:3, children:{ render(){ console.log(this.key1,"Key");//undefined } } }]
class Foo { constructor() { this.key1 = 'key 1' this.bar = new Bar(this) } } class Bar { constructor(parent) { this.parent = parent } redner() { console.log('Parent key 1:', this.parent.key1) } }