例如含有以下json数组
var list=[{a:1,b:'OK'},{a:2,b:'Hello'},{a:3,b:'Yes'}]
想要从中取出a的新数组:
var arr=list.map(t => t.a)