I have valid JSON data as :
{
"bitcoin": [
"-0.47",
"-0.46",
"-0.42"
],
"maker": [
"8.29",
"8.29",
"6.89"
]
}
How can I get values from such data where there is no key?
Edit: with the help of @kolzar and @FZs, I simply managed it by following code:
for (var key in obj) {
console.log(key + obj[key]);
}