forEach
这题可以用forEach来写么 可以的话怎么写
这题可以用forEach来写么 可以的话怎么写
2019-01-09
<script type="text/javascript">
//通过javascript的日期对象来得到当前的日期,并输出。
var mydate=new Date();
var weekday=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"];
document.write("日期:"+mydate.getFullYear()+"-"+(mydate.getMonth()+1)+"-"+mydate.getDate()+" "+weekday[mydate.getDay()]+"<br>");
//成绩是一长窜的字符串不好处理,找规律后分割放到数组里更好操作哦
var scoreStr = "小明:87;小花:81;小红:97;小天:76;小张:74;小小:94;小西:90;小伍:76;小迪:64;小曼:76";
var scoreSum=0;
var scoreArr=scoreStr.split(";");
//document.write(scoreArr);
//从数组中将成绩撮出来,然后求和取整,并输出。
for(index in scoreArr){
var stuInfoArr=scoreArr[index].split(":");
scoreSum+=parseInt(stuInfoArr[1]);
}
document.write(scoreSum/scoreArr.length);
</script>
举报