10
votes
3answers
477 views

Confusion about Function.prototype.bind()

I'm a huge fan of ES5's Function.prototype.bind and currying arguments (basically creating default arguments for functions). I was fooling around with that a bit, but I can't for the life of me ...
5
votes
2answers
200 views

Can I get an unbound function from a bound function in JavaScript?

I'm getting my head wrapped about currying and other techniques using Function.prototype.bind. It seems extremely useful to change function scope (i.e., this value) in certain situations. However it ...
2
votes
1answer
311 views

Why did ECMAScript 5 add .bind()?

I just finished reading an article about ECMAScript 5 strict mode. It says that ECMAScript 5 added .bind(). var obj = { method: function(name){ this.name = name; } }; ...
12
votes
1answer
7k views

Function.prototype.bind

I've got pretty interesting question about EcmaScript-5 Function.prototype.bind implementation. Usually when you use bind, you do it this way: var myFunction = function() { alert(this); ...