3.1 | 数组方法 | forEach() | currentValue:数组当前项的值 | index:数组当前项的索引 arr:数组对象本身 | |||
3.2 | 数组方法 | map( ) | filter()方法创建一个信的数组用于筛选 | currebtValue:数组当前项的值,index:数组当前项的索引;arr:数组对象本身 | |||
3.3 | 数组方法 | some( ) | some()方法用户检测数组方法是否满足条件; 返回值是 布尔值 | currebtValue:数组当前项的值,index:数组当前项的索引;arr:数组对象本身 | some查找唯一数组使用 | ||
3.4 | 数组方法 | every() | 类似some()自己查阅资料 | ||||
3.5 | 数组添加元素 | push(‘’) |