const a = new Object() // 创建, 不推荐const b = {} // 赋值, 性能比a要好const c = Object.create() // 继承创建, Object.create(null) 很多框架都有用来做性能优化
const a = new Object() // 创建, 不推荐const b = {} // 赋值, 性能比a要好const c = Object.create() // 继承创建, Object.create(null) 很多框架都有用来做性能优化