What's the difference between bind and call?
This question already has an answer here:
.call
executes the function immediately.
.bind
returns a new function which can be executed at your convenience. For example it can be used as callback.
下一篇: 绑定和调用有什么区别?