微信扫一扫
[10, 20, 30].map(parseInt)等同于下边的代码
[10, 20, 30].map((item,index)=>{ return parseInt(item,index) })
相关推荐