var obj = {
a: 1
};
obj.b = obj = {
c: 2
console.log(obj.b);//undefined
obj.b 为何输出undefined ?
holdtom
相关分类