forked from M3-Academy/challenge-algorithms-v2.0
<Feture>(10-logestWords): implementação do código logestWords
This commit is contained in:
parent
985af27572
commit
15b475e964
@ -1,4 +1,10 @@
|
||||
export function longestWords(words) {
|
||||
// implementar logica aqui
|
||||
|
||||
let longestSize = 0
|
||||
let longestWord = []
|
||||
words.forEach(element => {
|
||||
if(element.length>longestSize)
|
||||
{longestSize = element.length}})
|
||||
longestWord = words.filter(element => element.length === longestSize);
|
||||
return longestWord
|
||||
}
|
Loading…
Reference in New Issue
Block a user