美团一面1.实现 hasProperty(o,’x.y.z’) 方法,可以判断 o.x.y.z 路径是否存在对应属性
const o = {x:{y:{z:0}}}
hasProperty(o,’x.y.z’) // true
hasPro
2021-05-11