Object.assign let a = {a: 'wanjunshijie'} let b = {b: '完俊世界'} let c = {c: 'web'} let d = Object.assign(a, b, c) console.log(d) 喜欢