题解 | #字符串字符统计#
字符串字符统计
http://www.nowcoder.com/practice/777d0cd160de485cae0b1fd1dd973b44
function count(str) { const obj = {} // 简约即是优雅 Array.from(str.replace(' ', '')).forEach(key => Reflect.has(obj, key) ? obj[key]++ : obj[key] = 1) return obj }