已采纳回答 / 晓之蛇
这一行:<input type="button" value="Start" onclick="setInterval(clock,100)">改为<...code...>
2019-12-07
已采纳回答 / 生尔不凡的道道
题目要求建立一个infos数组来存取数据,标准答案又创建了一个arr1数组并用变量n来代替0,1,2。。这些,在infos数组里面进行循环,如果符合条件就存到arr1数组中,例如第一个存到arr1【0】中,一次循环最后n加一,下一个符合条件的就会存到arr1【1】中,最后筛选出符合条件就是这个新数组arr1的数据。
2019-12-07
最新回答 / 慕雪2081275
var content = "Hello World"; var newContent = content.split(" "); console.log(newContent); document.write(newContent);<...code...>
2019-12-03