feat: adicionando solução do 9° desafio

This commit is contained in:
Ana Carolina Duarte Cavalcante 2022-10-23 17:36:37 -03:00
parent 007a601900
commit 7328f18713

View File

@ -16,7 +16,15 @@
*/ */
function mostUsedChar(text) { function mostUsedChar(text) {
// implementar logica aqui // implementar logica aqui
return "" let max = 0,
maxChar = '';
text.split('').forEach(function(char){
if(text.split(char).length > max) {
max = text.split(char).length;
maxChar = char;
}
});
return maxChar;
} }
// Resultados esperados // Resultados esperados