forked from M3-Academy/challenge-algorithms-v2.0
12 lines
328 B
JavaScript
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;
|
|
} |