使用变量作为属性-错误:意外令牌[

时间:2019-01-16 14:14:00

标签: javascript node.js

我似乎无法使用它来处理字符串

binance.prices((error, ticker) => {

  console.log("Price of BTC: ", ticker.BTCUSDT);
});

返回正确的值(BTC的价格)

var coin = "BTCUSDT"

binance.prices((error, ticker) => {

  console.log("Price of BTC: ", ticker.[coin]);
});

返回SyntaxError: Unexpected token [。我已经询问了周围,但是对此没有任何帮助。

1 个答案:

答案 0 :(得分:0)

使用

console.log("Price of BTC: ", ticker.coin);

 console.log("Price of BTC: ", ticker[coin]);