标签: javascript functional-programming
为什么这会返回1而不是预期的2?
1
2
(function() { return this }) .bind(1) .bind(2)()
查看了Mozilla的bind引用,但它没有帮助理解它。
bind