实现 call 方法

发布时间:2024年01月15日
Function.prototype.myCall = function(context) {
    if (typeof this !== 'function') {
        return
    }
    let args = [...arguments].slice(1)
    context = context || window || global
    context.fn = this
    let result = context.fn(...args)
    delete context.fn
    return result;
}

let person = {
    name: 'test'
}

function setInfo(age, address) {
    this.age = age
    this.address = address
}

setInfo.myCall(person, '12', '北京')
console.log('结果', person)

文章来源:https://blog.csdn.net/qq_17335549/article/details/135592391
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。