JS 數組中有 undefined 值,用 for 循環和 for…in 循環遍歷的不同之處

先說結論:在數組遍歷時一般最好使用for循環遍歷 var arr=new Array(); arr[0]="P90"; arr[3]="AWM"; arr[5]="AK47"; console.log("//for 循環遍歷"); for(let i=0;i<arr.length;i++){ console.log(arr[i]); } console.log("//fo
相關文章
相關標籤/搜索