'use strict'; // Merge an object let first = {name: 'Tony'}; let last = {lastName: 'Stark'}; let person = Object.assign(first, last); ...
確定! 回上一頁