記一下關於for in

記一下關於for in 剛纔寫到了需要在一個數組的位置添加一個元素,用到了for in這個遍歷方法,總所周知的,for in循環的是數組的下標,所以一開始我是這麼寫的。 function addArrItem(item, arr) { let newArr = [item]; for(let index in arr) { newArr[index+1] = arr[index]; } retu
相關文章
相關標籤/搜索