challenge-algorithms-v2.0-d.../10-longestWords/index.js
Affonso Kopmann 60f22c1bc7 fix(longestWords): Remove linha excedente
fix(longestWords): Remove linha excedente
2022-10-31 17:14:53 +00:00

10 lines
319 B
JavaScript

export function longestWords(words) {
// implementar logica aqui
let maioresPalavras = "";
for ( const word of words ) {
if ( word.length > maioresPalavras.length ) {
maioresPalavras = word; }
}
return words.filter ( ( word ) => word.length == maioresPalavras.length ) ;
}