es6语法之遍历
遍历就是for循环,在es6里有多种遍历方法:let div=document.createElement('div')
let div2=document.createElement('div')
let div3=document.createElement('div')
onload=function(){
let o=document.querySelector('body')
o.appendChild(div)
o.appendChild(div2)
o.appendChild(div3)
let f=''
let arr=['a','b','c','d']
for(let v in arr){
f+=arr
}
div.innerHTML=f
let h=''
arr.forEach(function(v,k){
h+=v
})
div2.innerHTML=h
let z=''
arr.map(function(v,k){
z+=v
})
div3.innerHTML=z
}
我只列出3种常用的,其他还有很多但不太常用,在网页输出结果为
页:
[1]