数组方法
数组是对象数据类型的,它属于特殊的对象
let ary = [12, 23, 34, 45];
console.log(typeof ary); // "object"
console.dir(ary);
/*
* ary = {
* 0:12,
* 1:23,
* 2:34,
* 3:45,
* length:4
* }
*
* 数字作为索引(KEY 属性名)
* length代表长度
*
* ary[0] 根据索引获取指定项的内容
* ary.length 获取数组的长度
* ary.length-1 最后一项的索引
*/
数组中常用的方法
- 方法的作用和含义
- 方法的实参(类型和含义)
- 方法的返回值
- 原来的数组是否会发生改变
1.实现数组增删改的方法
这一部分方法都会修改原有的数组
push
/*
* push : 向数组末尾增加内容
* @params
* 多个任意类型
* @return
* 新增后数组的长度
*/
let ary = [10, 20];
let res = ary.push(30, 'AA');
// 基于原生 JS 操作键值对的方法,也可以向末尾追加一项新的内容
ary[ary.length] = 40;
console.log(res, ary); // 4 [10,20,30,'AA',40]
unshift
/*
* unshift : 向数组开始位置增加内容
* @params
* 多个任意类型
* @return
* 新增后数组的长度
*/
let ary = [10, 20];
let res = ary.unshift(30, 'AA');
console.log(res, ary); // 4 [30, 'AA', 10, 20]
// 基于原生 ES6 展开运算符,把原有的 ARY 克隆一份,在新的数组中创建第一项,其余的内容使用原始 ARY 中的信息即可,也算实现了向开始追加的效果
ary = [100, ...ary];
console.log(ary); // [100,30,'AA',10,20]
shift
/*
* shift : 删除数组中的第一项
* @params
* @return
* 删除的那一项
*/
let ary = [10, 20, 30, 40];
let res = ary.shift();
console.log(res, ary); // 10 [20, 30, 40]
// 基于原生 JS 中的 DELETE,把数组当做普通的对象,确实可以删除掉某一项内容,但是不会影响数组本身的结构特点(length 长度不会跟着修改),真实项目中杜绝这样的删除使用
delete ary[0];
console.log(ary); // {1:30, 2:40, length:3}
pop
/*
* pop : 删除数组中的最后一项
* @params
* @return
* 删除的那一项
*/
let ary = [10, 20, 30, 40];
let res = ary.pop();
console.log(res, ary); // 40 [10,20,30]
// 基于原生 JS 让数组数组长度干掉一位,默认干掉的就是最后一项
ary.length--; // ary.length = ary.length - 1;
console.log(ary);
splice
/*
* splice : 实现数组的增加、删除、修改
* @params
* n, m 都是数字 从索引 n 开始删除 m 个元素(m 不写,是删除到末尾)
* @return
* 把删除的部分用新数组存储起来返回
*/
let ary = [10, 20, 30, 40, 50, 60, 70, 80, 90];
let res = ary.splice(2, 4);
console.log(res, ary); // [30, 40, 50, 60] [10, 20, 70, 80, 90]
// 基于这种方法可以清空一个数组,把原始数组中的内容以新数组存储起来(有点类似数组的克隆:把原来数组克隆一份一模一样的给新数组)
/* res = ary.splice(0);
console.log(res, ary);// [10, 20, 70, 80, 90] [] */
// 删除最后一项和第一项
ary.splice(ary.length - 1);
ary.splice(0, 1);
console.log(ary);
/*
* splice : 实现数组的增加、修改
* @params
* n, m, x 从索引 n 开始删除 m 个元素,用 x 占用删除的部分
* n, 0, x 从索引 n 开始,一个都不删,把 x 放到索引 n 的前面
* @return
* 把删除的部分用新数组存储起来返回
*/
let ary = [10, 20, 30, 40, 50];
let res = ary.splice(1, 2, '珠峰培训', '哈哈哈');
console.log(res, ary); // [20,30] [10,'珠峰培训','哈哈哈', 40, 50]
// 实现增加
ary.splice(3, 0, '呵呵呵');
console.log(ary); // [10, "珠峰培训", "哈哈哈", "呵呵呵", 40, 50]
// 向数组末尾追加
ary.splice(ary.length, 0, 'AAA');
// 向数组开始追加
ary.splice(0, 0, 'BBB');
2.数组的查询和拼接
此组学习的方法,原来数组不会改变
slice
/*
* slice : 实现数组的查询
* @params
* n, m 都是数字 从索引 n 开始,找到索引为 m 的地方(不包含 m 这一项)
* @return
* 把找到的内容以一个新数组的形式返回
*/
let ary = [10, 20, 30, 40, 50];
let res = ary.slice(1, 3);
console.log(res); // [20,30]
// m 不写是找到末尾
res = ary.slice(1);
console.log(res); // [20, 30, 40, 50]
// 数组的克隆,参数0不写也可以
res = ary.slice(0);
console.log(res); // [10, 20, 30, 40, 50]
concat
/*
* concat : 实现数组拼接
* @params
* 多个任意类型值
* @return
* 拼接后的新数组(原来数组不变)
*/
let ary1 = [10, 20, 30];
let ary2 = [40, 50, 60];
let res = ary1.concat('珠峰培训', ary2);
console.log(res);
3.把数组转换为字符串
原有数组不变
toString
/*
* toString : 把数组转换为字符串
* @params
* @return
* 转换后的字符串,每一项用逗号分隔(原来数组不变)
*/
let ary = [10, 20, 30];
let res = ary.toString();
console.log(res); // "10,20,30"
console.log([].toString()); // ""
console.log([12].toString()); // "12"
join
/*
* join : 把数组转换为字符串
* @params
* 指定的分隔符(字符串格式)
* @return
* 转换后的字符串(原来数组不变)
*/
let ary = [10, 20, 30];
let res = ary.join('');
console.log(res); // "102030"
res = ary.join();
console.log(res); // "10, 20, 30"
res = ary.join('|');
console.log(res); // "10 | 20 | 30"
res = ary.join('+');
console.log(res); // "10 + 20 + 30"
console.log(eval(res)); // 60 eval把字符串变为 JS 表达式执行
4.检测数组中的是否包含某一项
indexOf / lastIndexOf / includes
/*
* indexOf / lastIndexOf : 检测当前项在数组中第一次或者最后一次出现位置的索引值(在 IE6~8 中不兼容)
* @params
* 要检索的这一项内容
* @return
* 这一项出现的位置索引值(数字),如果数组中没有这一项,返回的结果是-1
* 原来数组不变
*/
let ary = [10, 20, 30, 10, 20, 30];
console.log(ary.indexOf(20)); // 1
console.log(ary.lastIndexOf(20)); // 4
// 想验证 ARY 中是否包含'珠峰培训'
if (ary.indexOf('珠峰培训') === -1) {
// 不包含
}
// 也可以直接使用 ES6 新提供的 includes 方法判断
if (ary.includes('珠峰培训')) {
// 包含:如果存在返回的是TRUE
}
5.数组的排序或者排列
reverse
/*
* reverse : 把数组倒过来排列
* @params
* @return
* 排列后的新数组
* 原来数组改变
*/
let ary = [12, 15, 9, 28, 10, 22];
ary.reverse();
console.log(ary); // [22, 10, 28, 9, 15, 12]
sort
/*
* sort : 实现数组的排序
* @params
* 可以没有,也可以是个函数
* @return
* 排序后的新数组
* 原来数组改变
*/
let ary = [7, 8, 5, 2, 4, 6, 9];
ary.sort();
console.log(ary); // [2, 4, 5, 6, 7, 8, 9]
// SORT 方法中如果不传递参数,是无法处理10以上数字排序的(它默认按照每一项第一个字符来排,不是我们想要的效果)
/* ary = [12, 15, 9, 28, 10, 22];
ary.sort();
console.log(ary); // [10, 12, 15, 22, 28, 9] */
// 想要实现多位数正常排序,需要给 SORT 传递一个函数,函数中返回 a-b 实现升序,返回 b-a 实现降序
ary = [12, 15, 9, 28, 10, 22];
// ary.sort(function(a,b){ return a-b; });
ary.sort((a, b) => a - b);
console.log(ary);
6.遍历数组中每一项的方法
forEach
/*
* forEach:遍历数组中的每一项内容
* @params
* 回调函数
* @return
*
* 原来数组不变
*/
let ary = [12, 15, 9, 28, 10, 22];
/* // 基于原生 JS 中的循环可以实现
for (let i = 0; i < ary.length; i++) {
// i:当前循环这一项的索引
// ary[i]:根据索引获取循环的这一项
console.log('索引:' + i + ' 内容:' + ary[i]);
} */
ary.forEach((item, index) => {
// 数组中有多少项,函数就会被默认执行多少次
// 每一次执行函数:item 是数组中当前要操作的这一项,index 是当前项的索引
console.log('索引:' + index + ' 内容:' + item);
});
map
/*
* 6.2 map(function (item, index) {})
* 作用:将原数组映射成一个新数组
* 参数:回调函数,数组有多少项,回调函数就会执行多少回。
* 返回值:由回调函数的返回值组成的新数组
* 原数组:不变
* */
var ary = [1, 3, 5, 7, 9];
var r = ary.map(function (item, index) {
return item * 2;
});
console.log(r);
filter
let ary = [1, 2, 5, 6, 10];
// 数组.filter(function (item, index) {return 条件})过滤,把满足条件,即回调函数 return true 的项拿出来组成一个新数组;原数组不变;
let r1 = ary.filter((item, index) => item >= 6);
console.log(r1); // 6 10
find
let ary = [1, 2, 5, 6, 10];
// 数组.find(function (item, index) {return 条件}):查找数组中满足条件的第一项,找到第一个就返回,如果有多个都满足条件也只是获取第一个;如果没找到返回 undefined【注意找到返回数组项,不是新数组】
let r3 = ary.find(function (item, index) {
return item > 30;
});
console.log(r3);
reduce
let ary = [1, 2, 5, 6, 10];
some
let ary = [1, 2, 5, 6, 10];
// 数组.some(function (item, index) {return 条件}):验证数组中是否有一些向满足条件,满足就会返回true,否则false;
let r2 = ary.some(function (item, index) {
return item > 3
});
console.log(r2);
every
let ary = [1, 2, 5, 6, 10];
// 数组.every(function (item, index) {return 条件}):用来验证数组的每一项是否满足某个条件(条件就是回调函数返回值),如果每一个都满足条件就会返回 true,否则返回 false
let result = ary.every(function (item, index) {
return item > 3;
});
console.log(result);
……
Array.prototype 在控制台查看数组中所有提供的方法,可以基于 MDN 网站去查询方法的用法