forked from M3-Academy/challenge-algorithms-v2.0
fix(longestWords): removendo testes feitos com console log
10-longestWords
This commit is contained in:
parent
07c54778f0
commit
f22d44c39b
@ -7,17 +7,7 @@ export function longestWords(words) {
|
|||||||
maior = string;
|
maior = string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const maiores = words.filter((string) => string.length === maior.length);
|
const maiores = words.filter((string) => string.length === maior.length);
|
||||||
|
|
||||||
return maiores;
|
return maiores;
|
||||||
console.log(maiores);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// console.log(longestWords(['oi', 'tudo', 'bem']));
|
|
||||||
// console.log(longestWords(['Javascript', 'é', 'show']));
|
|
||||||
console.log(longestWords(["abacaxi", "melancia", "bananana"]));
|
|
Loading…
Reference in New Issue
Block a user