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

12 lines
328 B
JavaScript

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