let in,let of的区别

let arr = [1,2,3,4]
for(let i in arr ){
	console.log(i)  //i是字符串类型的数字索引  所以打印arr[i+1]会得一个undefined
}
for(let i of arr){
	console.log(i)  //i是值
}

for(let i =0;i

你可能感兴趣的:(js,javascript)