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

关于JS的算法题

关于JS的算法题

HUX布斯 2018-09-07 09:11:20
function largestOfFour(arr) {   return arr.map(Function.apply.bind(Math.max, null)); } largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);这Function.apply.bind(Math.max, null) 该怎么理解??
查看完整描述

1 回答

?
守着一只汪

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

假如直接这样

function largestOfFour(arr) {  return arr.map(Math.max);
}

输出一定是四个NAN
因为Math.max的参数不能是数组,一定是Math.max(1,2,3)这样的格式
所以传给map的callback一定是可以处理数组的每一项由[1,2,3]变成1,2,3
来看函数:

function largestOfFour(arr) {  return arr.map(Function.apply.bind(Math.max, null));
}

单独拿出来看

Function.apply.bind(Math.max, null)

Function.apply里面的this被替换成Math.max,同时参数传过去null

这时候arr里面的每一项数组作为参数传递给Function.apply,由Math.max处理,而数组当做apply的第二个参数正好处理

不知道我解释的清不清晰~~


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

添加回答

举报

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