I'm calling a function in node.js and it returns a JSON:
{
"pair": "BTCBRL",
"last": 2280.0,
"high": 2306.0,
"low": 2205.0,
"vol": 113.17267938,
"vol_brl": 255658.20705113,
"buy": 2263.0,
"sell": 2279.77
}
I would like to use only the "buy" information of this json, that is, I want to use this way:
var buy = "o que vim no json no caso 2263.0";