const arr1 = {
a: 'a'
};
const arr2 = {
b: 'b'
const c = {...arr1, ...arr2};
arr1和arr2都是不可迭代的对象,为什么在chrome中可以实现合并?
在MDN中扩展语法必须要在可迭代对象中才可以使用。
相关分类