数组:由元素组成的有序的集合
声明:字面量的声明 let 变量名称=[]
数组的长度属性:元素的个数
数组.length
数组的取值:使用下标(索引)
数组长度和下标有什么关系:下标和长度没有关系,长度减一等于最后一个下标
数组的循环:
1.for 循环
2.for in 循环
3.for of 循环
4.forEach 循环 --- 私有的
let arr = [1, 2, 3, 4, 5];
arr.forEach((item, index, a) => {
console.log(item, index, a);
})