Array map 数组映射的实现

时间:2015-05-16 11:52:18   收藏:0   阅读:185

<!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>

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

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!