數組遍歷

數組遍歷方法 const colorArr = ['green', 'red', 'blue', 'pink', 'purple', 'gray', 'black', 'white'] for循環web // 循環獲取值和下標 for(let i = 0; i < colorArr.length; i++) { console.log(`下標:${i} 值:${colorArr[i]}`) }
相關文章
相關標籤/搜索