//以下输出结果是什么?
let a = [1, 2, 3];
console.log(a.map(parseInt)) //[1,NaN,NaN]
//解析:
//map的语法是这样
a.map((item,index)=>{
2021-10-24