set和map相关题 [1,2,3].map(parseInt)的结果 题面等同于 [1,2,3].map((num,idx)=>parseInt(num,idx)) [parseInt(1,0), parseInt(2,1), parseInt(3,2)]