为了账号安全,请及时绑定邮箱和手机立即绑定

Array.prototype.map() 的callback如何使用调用map的函数的变量?

Array.prototype.map() 的callback如何使用调用map的函数的变量?

茅侃侃 2018-09-12 13:34:48
function a(count) {  return [1,2,3].map(val => val + count); }function b(count) {  return [1,2,3].map(fn); }function fn(val) {  return val + count; }console.log('a' + a(9));console.log('b' + b(9));Function a中,map的callback使用arrow function直接定义在function a中,那么map的callback是可以使用count变量的。如果我想复用map的callback函数,如function b,那么这个callback如何取得count的值呢? 如上面的代码,会抛出ReferenceError: count is not defined 错误。
查看完整描述

1 回答

?
慕容3067478

TA贡献1773条经验 获得超3个赞

function fn(count) {

    return function(val) {

        return count + val;

    }

}


function a(count) {

    var cb = fn(count);

    return [1, 2, 3].map(cb);

}


查看完整回答
反对 回复 2018-10-18
  • 1 回答
  • 0 关注
  • 648 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信