ES6中的rest和spread是两个与数组和对象相关的操作符。
在函数参数中使用rest操作符:
function sum(...numbers) {
return numbers.reduce((total, num) => total + num, 0);
}
console.log(sum(1, 2, 3, 4)); // 输出:10
在上述例子中,rest操作符将传入的参数收集到一个名为numbers
的数组中。
在数组中使用rest操作符:
const [first, second, ...rest] = [1, 2, 3, 4, 5];
console.log(first); // 输出:1
console.log(second); // 输出:2
console.log(rest); // 输出:[3, 4, 5]
在上述例子中,rest操作符将剩余的元素收集到一个名为rest
的数组中。
在对象中使用rest操作符:
const { name, age, ...rest } = { name: 'John', age: 30, city: 'New York', country: 'USA' };
console.log(name); // 输出:'John'
console.log(age); // 输出:30
console.log(rest); // 输出:{ city: 'New York', country: 'USA' }
在上述例子中,rest操作符将剩余的属性收集到一个名为rest
的对象中。
在函数调用中使用spread操作符:
function sum(a, b, c, d) {
return a + b + c + d;
}
const numbers = [1, 2, 3, 4];
console.log(sum(...numbers)); // 输出:10
在上述例子中,spread操作符将数组numbers
展开为多个参数传递给函数。
在数组中使用spread操作符:
const arr1 = [1, 2, 3];
const arr2 = [...arr1, 4, 5];
console.log(arr2); // 输出:[1, 2, 3, 4, 5]
在上述例子中,spread操作符将数组arr1
展开,并与其他元素一起创建一个新的数组arr2
。
在对象中使用spread操作符:
const obj1 = { name: 'John', age: 30 };
const obj2 = { ...obj1, city: 'New York', country: 'USA' };
console.log(obj2); // 输出:{ name: 'John', age: 30, city: 'New York', country: 'USA' }
在上述例子中,spread操作符将对象obj1
展开,并与其他属性一起创建一个新的对象obj2
。
总结:
腾讯云相关产品和产品介绍链接地址:
腾讯云Global Day LIVE
云+社区沙龙online [技术应变力]
云+社区沙龙online
高校公开课
Elastic 实战工作坊
GAME-TECH
领取专属 10元无门槛券
手把手带您无忧上云