Back to tasksGet help with live coding in real time with Sobes Copilot
Junior — Senior
24
Как работает this внутри метода объекта
Companies where asked:
ITFB Group
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()); // ?