I have this hash
data = {"05 INTERNAL":[["5e Research","66"]],"06 MISCELLANEOUS":[["6a Internal Training","69"]]}
I want to get the value of the first key in the array. when I do
Object.values(data)[0]
I get an array which consists of
[["5e Research","66"]]
How do I extract the value "66" from this using jquery?
Thanks for the help!
[["5e Research","66"]]- that is an Array with one element: an Array of two strings. Why not just a single level["5e Research","66"]?