Sobes.tech
Back to tasks
Junior — Senior
40

Определение вывода в консоль для функции фильтрации пользователей №100

Companies where asked:

Т-БанкТ-Банк
Get help with live coding in real time with Sobes Copilot
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());