首页 > 其他 > 详细

【Avalon源码】iterator

时间:2016-12-23 18:36:37      阅读:154      评论:0      收藏:0      [点我收藏+]
function iterator(vars, body, ret) {
    var fun = ‘for(var ‘ + vars + ‘i=0,n = this.length; i < n; i++){‘ +
            body.replace(‘_‘, ‘((i in this) && fn.call(scope,this[i],i,this))‘) +
            ‘}‘ + ret
    console.log(fun)
    return Function(‘fn,scope‘, fun)
}

Array.prototype.forEach = iterator(‘‘, ‘_‘, ‘‘)
Array.prototype.filter = iterator(‘r=[],j=0,‘, ‘if(_)r[j++]=this[i]‘, ‘return r‘)
Array.prototype.map = iterator(‘r=[],‘, ‘r[i]=_‘, ‘return r‘)
Array.prototype.some = iterator(‘‘, ‘if(_)return true‘, ‘return false‘)
Array.prototype.every = iterator(‘‘, ‘if(!_)return false‘, ‘return true‘)

var arr = [1,2,3]
arr.forEach(function(value) {
    console.log(value)
})

 

【Avalon源码】iterator

原文:http://www.cnblogs.com/jzm17173/p/6215558.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!