Sobes.tech
Back to tasks
Junior — Senior
32

Как this влияет на свойства и функции объекта

Get help with live coding in real time with Sobes Copilot
Task condition

Определите, какие данные будут выведены в консоль при обращении к разным полям и методам объекта, использующим this.

const obj = {
  a: 1,
  b: this.a + 1,
  c: () => this.a + 1,
  d() {
    return this.a + 1;
  },
  e() {
    return (() => this.a + 1)();
  }
};

console.log(obj.b);
console.log(obj.c());
console.log(obj.d());
console.log(obj.e());