call、apply、bind的实现
摘要:
1. call方法的实现是通过this指针的指向不同实现的。 Function.prototype.myCall = function (arg) { let context = arg || window; // 如果this为空则指向window context.fn = this; // 当前 阅读全文
posted @ 2021-11-30 14:49 要慢慢来 阅读(50) 评论(0) 推荐(0) 编辑