I have an array of array data. I want to loop array of array value and get the first values of each array.
var myArr= [
["1",10],
["2",20],
["3",34]
]
I need to get the first value of each array. Here first value is a string value. How to get "1","2","3" these string value using loop.