如何从这个数组的数组的第一个元素创建新数组?
[["1",2],["3",2],["6",2]]
我希望它是
['1', '3', '6']
我的尝试:
javascript arrays
arrays ×1
javascript ×1