const result = something[dynamicValue]
鉴于上面的代码,我可以得到错误,Cannot read property 'x' of null
因为某些东西是未定义的,我如何回退检查到 void 错误?我应该做这样的事情吗
const result = something && something[dynamicValue]
const result = something[dynamicValue]
鉴于上面的代码,我可以得到错误,Cannot read property 'x' of null
因为某些东西是未定义的,我如何回退检查到 void 错误?我应该做这样的事情吗
const result = something && something[dynamicValue]