js面试题目之连续赋值 发表于 2019-08-06 分类于 JS , 面试 阅读次数: 图解经典面试题之连续赋值 1234var a=b={n: 1};a.x=a={n: 2};console.log(a);console.log(b);