我想通过等效值(变量/常量)访问JavaScript对象值。假设我有一个像这样的对象:
"USD": {
"BTC": {
"PRICE": 9238493
}
如果我要访问PRICE,我会呼叫USD.BTC.PRICE
,但是如果我选择const currency = 'BTC'
并使用USD.currency.PRICE
,则会出现can't read property of undefined
。
"USD": {
"BTC": {
"PRICE": 9238493
}
或者类似地,将USD
与const convert = 'USD'
用作相同结果