const str2int = s=>[].slice.apply(s).map(x=>+x).reduce((x,y)=>x*10+y);
1.利用[].slice.apply(s)将s 拆成字符串数组
2.利用+将string转换成number,用map遍历,map(x=>+x),
3.利用reduce把数组转化成一个数字
打印结果如下:
补充,使用Array.from 可以节省掉map
const str2int = s=>Array.from(s,x=>+x).reduce((x,y)=>x*10+y)
console.log(str2int('12345')); //12345
console.log(typeof str2int('12345')); //number
Top comments (0)