摘要:
Array 对象属性constructor 返回对创建此对象的数组函数的引用。 length 设置或返回数组中元素的数目。 prototype 使您有能力向对象添加属性和方法。 Array 对象方法concat() 连接两个或更多的数组,并返回结果。 join() 把数组的所有元素放入一个字符串。元 阅读全文
摘要:
var str = 'asdfssaaasasasasaa'; var json={}; for(var i=0;iiMax){ iMax=json[i]; iIndex=i; } }console.log('出现次数最多的是:'+iIndex+'出现'+iMax+'次'); 阅读全文