题解 | #字符串字符统计#
字符串字符统计
http://www.nowcoder.com/practice/777d0cd160de485cae0b1fd1dd973b44
function count(str) { const obj = {} // 去除空格 const arr = str.replace(/\s*/g, "").split('') arr.forEach(item => { if (!obj[item]) { obj[item] = 1 } else { obj[item] += 1 } }); return obj }
涉及到的:
1.需要去除掉字符串的空格,使用到数组的replace方法和正则表达式,字符串转数组的split(' ')
2.方括号语法