1、使用JSON.parse(JSON.stringify()) 深拷贝时会出现的问题
var obj = {
a: "zs",
b: undefined,
c: Symbol("score"),
d: null,
e: function () {
console.log("show");
},
};
console.log(JSON.parse(JSON.stringify(obj)));
很明显undefined、函数、symbol 都会丢失