UNPKG

@s-awaken/lotide

Version:

Syrym's project for Lighthouse Labs Bootcamp

14 lines (13 loc) 278 B
const countLetters = function(string) { const result = {}; string = string.split(" ").join(""); for (const char of string) { if (result[char]) { result[char] += 1; } else { result[char] = 1; } } return result; }; module.exports = countLetters;