标签:asa for pre length ima json 字符串 asd color
1 var str = ‘asdfssaaasasasasaa‘; 2 var json = {}; 3 4 for (var i = 0; i < str.length; i++) { 5 if(!json[str.charAt(i)]){ 6 json[str.charAt(i)] = 1; 7 }else{ 8 json[str.charAt(i)]++; 9 } 10 }; 11 var iMax = 0; 12 var iIndex = ‘‘; 13 for(var i in json){ 14 if(json[i]>iMax){ 15 iMax = json[i]; 16 iIndex = i; 17 } 18 } 19 alert(‘出现次数最多的是:‘+iIndex+‘出现‘+iMax+‘次‘);
标签:asa for pre length ima json 字符串 asd color
原文地址:https://www.cnblogs.com/sqy1048440548/p/12860466.html