Sobes.tech
Back to tasks
Junior — Senior
24

Как работает this внутри метода объекта

Companies where asked:

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

Нужно понять, какой вывод появится в консоли, если раскомментировать строку с вызовом console.log.

const person = {
  name: "Bob",
  roles: ["friend", "brother", "student"],
  getRoles: function () {
    return this.roles.map(function (role) {
      return this.name + " is " + role;
    });
  }
};
// console.log(person.getRoles()); // ?