MYYA
简单地说.。// Serviceservice = (a, b) => {
a.lastName = b;
return a;};// Factoryfactory = (a, b) => Object.assign({}, a, { lastName: b });const fullName = { firstName: 'john' };// Serviceconst lastNameService = (a, b) => { a.lastName = b; return a;};console.log(lastNameService(fullName, 'doe'));// Factoryconst lastNameFactory = (a, b) => Object.assign({}, a, { lastName: b })console.log(lastNameFactory(fullName, 'doe'));