day032: 能不能模擬實現一個 bind 的效果?

實現bind以前,咱們首先要知道它作了哪些事情。app 對於普通函數,綁定this指向ide 對於構造函數,要保證原函數的原型對象上的屬性不能丟失函數 Function.prototype.bind = function (context, ...args) { // 異常處理 if (typeof this !== "function") { throw new Error("Functi
相關文章
相關標籤/搜索