es6合并对象的方法是什么

es6
1663
2024/1/19 19:03:32
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

ES6合并对象的方法有以下几种:

  1. 使用对象展开运算符(…):

    const obj1 = {a: 1, b: 2};
    const obj2 = {c: 3, d: 4};
    const merged = {...obj1, ...obj2};
    console.log(merged); // {a: 1, b: 2, c: 3, d: 4}
    
  2. 使用Object.assign()方法:

    const obj1 = {a: 1, b: 2};
    const obj2 = {c: 3, d: 4};
    const merged = Object.assign({}, obj1, obj2);
    console.log(merged); // {a: 1, b: 2, c: 3, d: 4}
    
  3. 使用Object.getOwnPropertyDescriptors()方法和Object.defineProperties()方法:

    const obj1 = {a: 1, b: 2};
    const obj2 = {c: 3, d: 4};
    const descriptors = Object.getOwnPropertyDescriptors(obj2);
    const merged = Object.defineProperties(obj1, descriptors);
    console.log(merged); // {a: 1, b: 2, c: 3, d: 4}
    

这些方法都可以用来合并多个对象的属性,并创建一个新的对象。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: es6创建对象的方法是什么