var obj1={x:5}; var obj2=obj1; obj1.a=obj1={x:6}; console.log(obj1.a); console.log(obj2.a);为什么obj1.a 会是undefined呢?为什么obj2.a会是{x:6}?