map是遍历数组中的每一个值

"1", "2", "3"].map(fn));
function fn(i){
return i*10+i;
}
//[ '101', '202', '303'