Is there a way to extract an array containing
["13139","13141", "13140"]
from the following data structure?
{
"13139": [tx[0]],
"13141": [tx[1]],
"13140": [tx[2]]
}
I attempted to use JSON.parse
but encountered a TokenError
. Any suggestions are greatly appreciated. Thank you.