=> {
if(item === 'needle') {
console.log(`found the ${item} at possition ${index}`)
}
})
}
народ подскажите плз как вернуть из функции строчку
found the ${item} at possition ${index}? так все работает тип- топ, но...
"found the needle at position " plus the index it found the needle, so:
findNeedle(['hay', 'junk', 'hay', 'hay', 'moreJunk', 'needle', 'randomJunk'])
const findNeedLe = haystack => { const index = haystack.findIndex(item => item === 'needle') return index === -1 ? "нету" : found the ${haystack[index]} at possition ${index} }
а файдИндекс типа возвращает индекс ? хм не спорю ша вернусь поызрю пройдут ли тесты)
> а файдИндекс типа возвращает индекс ? 🤔🤔🤔
я извиняюсь за реплай, Иван. хотел сказать спасибо оказывается вот оно как... const findNeedle = haystack => found the needle at position ${haystack.indexOf('needle')}
Обсуждают сегодня