摘要:
Function.prototype.bind = function(context, ...args){ return () => { return this.apply(context, args); } } function add (a, b) { return a + b; } conso 阅读全文
摘要:
一、函数中的this 在一个函数上下文中,this由调用者提供,由调用函数的方式来决定。如果调用者函数,被某一个对象所拥有,那么该函数在调用时,内部的this指向该对象。如果函数独立调用,那么该函数内部的this,则指向undefined。但是在非严格模式中,当this指向undefined时,它会 阅读全文
摘要:
一、 A higher-order component (HOC) is an advanced technique in React for reusing component logic. a higher-order component is a function that takes a c 阅读全文