数组的扩展

1、拓展运算符(...)
     -- 定义:扩展运算符(spread)是三个点(...)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。
     -- 应用:
                 -- 该运算符主要用于函数调用。
function add(x, y) {
     return x + y;
}
var numbers = [4, 38];
add(...numbers) // 42
                -- 合并数组
var arr1 = ['a', 'b'];
var arr2 = ['c'];
var arr3 = ['d', 'e'];
// ES5的合并数组
arr1.concat(arr2, arr3);
// [ 'a', 'b', 'c', 'd', 'e' ]
// ES6的合并数组
[...arr1, ...arr2, ...arr3]
                  -- 任何 Iterator 接口的对象(参阅 Iterator 一章),都可以用扩展运算符转为真正的数组。      
var nodeList = document.querySelectorAll('div');
var array = [...nodeList];
2、Array.from()
     -- 定义:将类数组对象和可遍历(iterable)转换成数组对象
// 类数组对象
let arrayLike = {
    '0': 'a',
    '1': 'b',
    '2': 'c',
    length: 3
};
let arr2 = Array.from(arrayLike); // ['a', 'b', 'c']
 
// NodeList对象
let ps = document.querySelectorAll('p');
Array.from(ps).forEach(function (p) {
     console.log(p);
});
 
// arguments对象
function foo() {
     var args = Array.from(arguments);
     // ...
}
3、Array.of()
     -- 定义: 方法用于将一组值,转换为数组
Array.of(3, 11, 8) // [3,11,8]
4、数组实例的copyWithin(target, start , end)  target:从该位置开始替换数据  start:从该位置开始读取数据  end: 从该位置前停止读书数据
     -- 定义: 数组实例的copyWithin方法,在当前数组内部,将指定位置的成员复制到其他位置(会覆盖原有成员),然后返回当前数组。也就是说,使用这个方法,会修改当前数组。
// 将3号位复制到0号位
[1, 2, 3, 4, 5].copyWithin(0, 3, 4) // [4, 2, 3, 4, 5]
5、数据实例 find() 和findIndex()
     -- 定义: find() 用于找出第一个符合条件的数组成员  findIndex() 用于找出第一个符合条件的数组索引
[1, 5, 10, 15].find(function(value, index, arr) {
  return value > 9;
}) // 10
 
[1, 5, 10, 15].findIndex(function(value, index, arr) {
  return value > 9;
}) // 2
 
6、数据实例 entries(), keys(), values()
     -- 定义:entries(),keys()和values()——用于遍历数组。它们都返回一个遍历器对象(详见《Iterator》一章),可以用for...of循环进行遍历,唯一的区别是keys()是对键名的遍历、values()是对键值的遍历,entries()是对键值对的遍历。
for (let index of ['a', 'b'].keys()) {
     console.log(index);
}
// 0
// 1
for (let elem of ['a', 'b'].values()) {
     console.log(elem);
}
// 'a'
// 'b'
for (let [index, elem] of ['a', 'b'].entries()) {
     console.log(index, elem);
}
// 0 "a"
// 1 "b"
7、数据实例 includes()
     -- 返回一个布尔值,表示某个数组是否包含给定的值
[1, 2, 3].includes(2)     // true
[1, 2, 3].includes(4)     // false
[1, 2, NaN].includes(NaN) // true

 

转载于:https://www.cnblogs.com/nankeyimeng/p/7245339.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值