实现一个功能和 `Function.prototype.bind` 相同的函数
2019-01-08 题目/**请按要求实现 `bind` 函数:以下代码执行时,需返回正确结果且运行过程中无异常*/letexample=function(){console.log(this)}constboundExample=bind(example,{a:true})boundExample.call({b:true})//{a:true}回答 bind 需接受两个参数:函数和上下文 bind 需创建一