其他Map、FlatMap 和 Reducemap 遍历原数组,处理每个元素,返回一个新数组
["1", "2", "3"].map(parseInt);
//返回十进制的数,无法转换为数值则返回 NaN
// parseInt('1',
2018-05-13