I'm pulling a JSON object via Meteor, and I'm retrieving it correctly
https://api.bitcoinaverage.com/ticker/USD
{
"24h_avg": 147.77,
"ask": 144.85,
"bid": 144.33,
"last": 144.81,
"timestamp": "Thu, 17 Oct 2013 02:30:18 -0000",
"total_vol": 79387.48
}
When I try to use the values, I get the following results
obj.ask
144.96
obj.24h_avg
SyntaxError: Unexpected token ILLEGAL
obj.total_vol
79773.46
Why am I getting an issue with the 24h_avg? I'm pretty darn lost here!
Thanks in advance!