09 Jun 2020
我们可以使用展开操作符复制数组,不过要注意的是这是一个浅拷贝
const arr1 = [1,2,3];
const arr1 = [1,2,3];
const arr2 = [...arr1];
console.log(arr2);
// [ 1, 2, 3 ]
假设我们有两个数组想合并为一个,早期间我们可以使用concat方法,但现在可以使用展开操作符:
const arr1 = [1,2,3];
const arr2 = [4,5,6];
const arr3 = [...arr1, ...arr2];
console.log(arr3);
// [ 1, 2, 3, 4, 5, 6 ]
const arr3 = [...arr2, ...arr1];
console.log(arr3);
// [4, 5, 6, 1, 2, 3];
要向这个user对象添加age,我们可以再次利用展开操作符。
const user = {
firstname: 'Chris',
lastname: 'Bongers'
};
const output = {...user, age: 31};
这里,我们将数组分为三个单独的参数,然后传递给函数。
const myFunc = (x1, x2, x3) => {
console.log(x1);
console.log(x2);
console.log(x3);
};
const arr1 = [1, 2, 3];
myFunc(...arr1);
// 1
// 2
// 3
const str = 'Hello';
const arr = [...str];
console.log(arr);
// [ 'H', 'e', 'l', 'l', 'o' ]
const plants = ['broccoli', 'cauliflower', 'cabbage', 'kale', 'tomato'];
console.log(plants.pop());
// expected output: "tomato"
filter() 方法创建一个新数组, 其包含通过所提供函数实现的测试的所有元素。
const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
const result = words.filter(word => word.length > 6);
console.log(result);
// expected output: Array ["exuberant", "destruction", "present"]
map() 方法创建一个新数组,其结果是该数组中的每个元素是调用一次提供的函数后的返回值。
const array1 = [1, 4, 9, 16];
// pass a function to map
const map1 = array1.map(x => x * 2);
console.log(map1);
// expected output: Array [2, 8, 18, 32]
forEach() 方法对数组的每个元素执行一次给定的函数。
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
// expected output: "a"
// expected output: "b"
// expected output: "c"
如有侵权联系删除
创作不易,感谢支持
比特币-打赏地址:
1DGiAzDacFRxewyos23C14cKcgD5LGZ5hK
狗币-打赏地址:
DRpHTcQXKcauPktjz9WMALST3Vnf5SviDs
以太坊-打赏地址:
0xd34447399c497337a61eccb29cc2ef3e0dad7d13
其他加密货币-打赏地址:
coming soon