Feat(Desafio_2.10): Cria resposta desafio 2.10

This commit is contained in:
Rhayllon Daudt 2022-10-30 03:11:50 -03:00
parent b218c48e66
commit 5e63b3c3a2

View File

@ -1,4 +1,10 @@
export function longestWords(words) {
// implementar logica aqui
let longest = ""
for (let word of words){
if (word.length > longest.length) longest = word;
}
let longest_words = words.filter(item => item.length >= longest.length)
return longest_words
}