const names = ['Даня', 'Саша', 'Юля', 'Лиза', 'Егор', 'Лиза'] function isLisa(element) { return element === 'Лиза' }
names.findIndex(isLisa)