SOURCE

/*
 * 完善函数 count 的功能。
 * 1、函数 count 会统计传入的字符串参数其每个字符的的个数,并返回一个结果对象(Object)。
 * 2、属性名称(key)为统计字符(区分大小写,即 a 不等于 A),属性值(value)为统计字符的个数。
 */

function count(str){
  if(typeof str !== "String") return;
  var obj = {};
  var i = 0;
  var length = str.length;
  for(;i<length;i=i+1){
    if(!obj[str[i]]){
      obj[str[i]] = 1;
    }else{
      obj[str[i]]++;
    }
  }
  return obj;
}
console 命令行工具 X clear

                    
>
console