参考答案:
Object.assign()方法用于将所有可枚举属性的值从一个或多个源对象复制到目标对象。它将返回目标对象(请注意这个操作是浅拷贝)
1Object.defineProperty(Object, 'assign', { 2 value: function(target, ...args) { 3 if (target == null) { 4 return new TypeError('Cannot convert undefined or null to object'); 5 } 6 7 // 目标对象需要统一是引用数据类型,若不是会自动转换 8 const to = Object(target); 9 10 for (let i = 0; i < args.length; i++) { 11 // 每一个源对象 12 const nextSource = args[i]; 13 if (nextSource !== null) { 14 // 使用for...in和hasOwnProperty双重判断,确保只拿到本身的属性、方法(不包含继承的) 15 for (const nextKey in nextSource) { 16 if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { 17 to[nextKey] = nextSource[nextKey]; 18 } 19 } 20 } 21 } 22 return to; 23 }, 24 // 不可枚举 25 enumerable: false, 26 writable: true, 27 configurable: true, 28})
最近更新时间:2021-07-07