前端概念和八股javascriptObject本页总览Object Object 的原型方法 constructor hasOwnProperty(propertyName) isPrototypeOf propertyIsEnumberalbe toLocaleString toString valueOf 对象浅拷贝 let a = { name: "ccc",};let b = Object.assign(a);let c = b;console.log(a === b); //falseconsole.log(b === c); //trueconsole.log(a === c); //false