首页 > 其他分享 >apply/call/bind区别,看看这是不是全网最简单的区分方法

apply/call/bind区别,看看这是不是全网最简单的区分方法

时间:2022-11-30 00:33:10浏览次数:49  
标签:... arr bind call max apply

啥都不说,先上代码,看了秒懂...

    let arr = [1,2,3,4,5,6,7,8,9]

    console.log(Math.max.apply(this,arr)) // 9
    console.log(Math.max.call(this,...arr)) // 9
    console.log(Math.max.bind(this,...arr)) // ƒ max() { [native code] }
    let max = Math.max.bind(this,...arr)
    console.log(max()) // 9

语法分析:

fn.apply(this,arr)

fn.call(this,arr[0],arr[1]...)

fn.bind(this,arr[0],arr[1]...)

总结 apply、call、bind

1. 第一个参数都是 this

2. apply 第二个参数是数组,call、bind是队列

3. call直接调用,bind返回的是一个函数,需要调用

标签:...,arr,bind,call,max,apply
From: https://www.cnblogs.com/liql/p/16937189.html

相关文章