challenge-algorithms-v2.0-t.../09-mostRepeatedChar/index.js

12 lines
302 B
JavaScript
Raw Normal View History

export function mostUsedChar(text) {
// implementar logica aqui
let max = 0;
let maxChar = '';
text.split('').forEach((char) => {
if(text.split(char).length > max){
max = text.split(char).length - 1;
maxChar = char;
}
})
return maxChar;
}