摘要:
构造函数 在原来class 类这个语法糖没有出来之前 我们一般会把方法挂在prototype 上 为了防止过多的开辟内存 1 // 构造函数 2 function Round(radius) { 3 this.radius = radius; 4 this.PI = Math.PI; 5 this. 阅读全文
摘要:
用普通的拷贝 JSON.parse和 JSON.stringify 进行对象拷贝是不会拷贝undefined //普通的拷贝 const obj = { a: { b: { c: [1, 2, 3], h: { name: "233" }, }, }, d: undefined, }; const 阅读全文