Back to tasks
Т-БанкGet help with live coding in real time with Sobes Copilot
Junior — Senior
40
Определение вывода в консоль для функции фильтрации пользователей №100
Companies where asked:
Task condition
Нужно выяснить, какой текст появится в консоли после выполнения приведённого ниже JavaScript‑кода.
const userService = {
currentFilter: 'active',
users: [
{ name: 'Alex', status: 'active' },
{ name: 'Nick', status: 'deleted' },
],
getFilteredUsers: function() {
return this.users.filter(function(user) {
return user.status === this.currentFilter;
});
}
};
console.log(userService.getFilteredUsers());