码迷,mamicode.com
首页 > 编程语言 > 详细

Array map 数组映射的实现

时间:2015-05-16 11:55:04      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<script type="text/javascript">

Array.prototype.map = function(fn){
for(var i =0; i< this.length; i++){
this[i] = fn(this[i], i);
}
return this;
}

var a=[1,2,3,4,5];
a.map(function(v){
return v*v;
});
console.log(a);

</script>
</html>

Array map 数组映射的实现

标签:

原文地址:http://www.cnblogs.com/w-rudolph/p/4507568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!