低门槛彻底理解JavaScript中的深拷贝和浅拷贝
1,201
0
在说深拷贝与浅拷贝前,我们先看两个简单的案例:
//案例1
var num1 = 1, num2 = num1;
console.log(num1) //1
console.log(num2) //1......