Max Chars Problem
Given a string, return the character that is most commonly used
maxChar('abcccccccccccd') // === 'c'
maxChar('apple 123111111')// === '1'
Solution 1 - For loops
Creating the object
Create an empty object variable
Loop Through each character in the ...
delvoid.hashnode.dev2 min read