首页 > 代码库 > JavaScript 高阶函数
JavaScript 高阶函数
; Run = function () { ; return Array.prototype.splice.call( arguments, -1 )[0].apply( this, arguments ) }; Loop = function () { var count = -1 , end = arguments.length -1 , _func = arguments[ end ] ; while ( ++count < end ) { ; _func.apply( this, arguments[ count ] ) } }; Run( 2, 3, 4, function( x, y, z ) { console.log( x*y*z ) }); Run.call( { name : ‘Run‘ }, 2, 3, 4, function( x, y, z ) { console.log( this, x*y*z ) }); Loop( [ 2, 3 ], [ 4, 5 ], function ( x, y ) { ; console.log( x*y ) }); Loop.call( { name : ‘Loop‘ }, [ 2, 3 ], [ 4, 5 ], function ( x, y ) { ; console.log( this, x*y ) })
JavaScript 高阶函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。