摘要: ##JavaScript原理 实现 bind() ★★ Function.prototype.bindNew = function (context, ...args) { return (...newArgs) => this.apply(context, [...args, ...newArgs 阅读全文
posted @ 2021-10-20 23:47 咩咩咩咯 阅读(77) 评论(0) 推荐(0)