标签: javascript web this
bind可让您将函数绑定到某些value,而返回的函数中的this等于value。
bind
value
this
如果我有一个函数,有没有办法检查此函数内的this是否已绑定到值? 以及什么值?
---添加我想要的示例
function foo() { /*...*/ } const bar = foo.bind(val); // val is any value
如果仅获得bar,我可以以某种方式到达val
bar
val