JS自带的map()方法
2021-06-08 04:04
标签:ascii码 返回值 string int 应该 alert script func rip JS自带的map()方法 标签:ascii码 返回值 string int 应该 alert script func rip 原文地址:http://www.cnblogs.com/memphis-f/p/7308842.htmlvar map = Array.prototype.map
var a = map.call("Hello World",function(x){
return x.charCodeAt(0);
})
// a的值为[72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100]
// 字符转ascii码:用charCodeAt();
// ascii码转字符:用fromCharCode();function returnInt(e){
return parseInt(e,10);
}
["1","2","3"].map(returnInt);
// 此时会返回[1,2,3]
上一篇:HTML5学习笔记