清华大佬ES

Object.assign 本质上是把source 覆盖到target 上

 

const source1 = {
    aaa: 'source-a',
    bbb: 'source-b'
}

const target = {
    aaa: 'target-a',
    ccc: 'target-c'
}

const result = Object.assign(target, source1);

console.log('result :>> ', result); // result :>> { aaa: 'source-a', ccc: 'target-c', bbb: 'source-b' }
console.log(target === result); // true



 

posted @ 2022-10-24 12:06  一路向北√  阅读(19)  评论(0编辑  收藏  举报

web应用开发&研究 -

业精于勤而荒于嬉。

工作,使我快乐。


Font Awesome | Respond.js | Bootstrap中文网