var data=[1,2,3,4,5,6];var sum=0;data.forEach(function(v){//其中的v就是数组的值 123456sum+=v;})document.write(sum+"");//打印出来是21data.forEach(function(o,p,q){//分别对应:数组元素,元素的索引,数组本身 q[p]=o+1;})document.write(data);