I have object "game.markets":
{"default":"60","available":["60"]}
So i want get 'default's value "60" , and for that use this method:
console.log(Object.values(game.markets)[0]);
And in result get ["{"] , just first character.
How i can get value ?
Thanks in advance