Feature #1

Merged
WilliamSimao merged 11 commits from Feature into master 2022-11-01 00:09:34 +00:00
Showing only changes of commit c7e515ec35 - Show all commits

View File

@ -1,4 +1,26 @@
export function longestWords(words) {
// implementar logica aqui
}
let longestLength = 0;
let longestWords = [];
words.forEach(word => {
if (longestLength < word.length) {
longestLength = word.length;
} else {
longestLength;
}
});
words.forEach(word => {
if (word.length === longestLength) {
longestWords.push(word);
}
});
return longestWords;
}