第708天 根据下面Object.create创建出的对象,下面的题分别输出的结果是什么? 作者:310342136 [3+1官网](http://www.h-camel.com/index.html) [我也要出题](http://www.h-camel.com/contribution.html) ``` let a = Object.create({ x: 1 }) let { ...b } = Object.create({ x: 1 }) console.log(a.x) console.log(b.x) ```