To my surprise, I wrote the code,
function printThis() {
console.log(this);
}
const f = printThis.bind(5).bind(7);
f(); // prints 5 instead ...
For further actions, you may consider blocking this person and/or reporting abuse
When you use bind it does not run your function just it sets the data 5,
So,
printThis.bind(5)
set 5 to 'this' then it does not return the exact function becuse it returns prototype undefined.So you cannot use again, you can think like a constant variable, it's set one time then you can not set again.
As a result, I write a function rbind means 're bind'.
It simply run the function first then returns the function which is not changed.
That is interesting, I can check if prototype is undefined, that means function is already bound.
No it doesn't mean that necessarily. Somebody could explicitly set the prototype to undefined for instance.
So if .prototype is already undefined it means that the function cannot be chained, right?
This is a HORRIBLE interview question, not once in 20 years have I ever had to address anything like this.
To play devil's advocate, I will disagree with this statement.
While you will never run across code that looks like this:
It is very possible (#1) you might run across a function that has been previously bound. And when you try to rebind this function, you might not be aware of why you
bind
statement is not working.It is also very possible (#2) that you need to return someone a bound function from a library you create. Not knowing that you are preventing someone down the road from rebinding that function.
Being able to
bind
a context inJavaScript
is a very powerful tool.First let's imagine you have an object that uses
this
. Because I am unimaginative, I'll create this contrived example:and it works great!
But we have a different use case (for reasons) that doesn't work.
This code doesn't work because calling
map
will useglobal
as yourthis
.So you add this creative line to keep
map
always bound toMyArray
:Making this code work as expected...
But what you didn't know is you unknowingly created a bug somewhere else in your application:
So to summarize:
Knowing why this happens is important. Once a function is bound, all future bindings will be ignored. So you must always bind with care.
Or you can do what I do and that is write JavaScript 100% free of
this
;)Rethinking JavaScript: The complete elimination and eradication of JavaScript's this.
Of course, no one would write code in
f.bind(x).bind(y)
point was that behavior was unpredictable. I was trying to optimize event handlers and I accidentally used bind on bound function and found out that I shouldn't have used bind.this
is powerful, I know lot of people talking about not usingthis
, but it is just unnecessary complicated syntax for no real benefit.I am in complete agreement!
I wasn't in disagreement with your article, but the commenter.
Cheers!
Why even suggest eliminating/eradicating the use of
this
then? Are there any true Javascript experts recommending this? Douglas Crockford, John Resig, somebody at THAT level? John Resig even useswith
as deemed necessary (Javascript templates, anyone?), despite everybody parroting howls of derision. There's no sense throwing a good tool such asthis
out, like a baby with the bath-water.Why does someone of influence have to recommend it for you to become a follower?
There is no baby/bathwater.
this
is a cancer that needs to be excised.this
in other languages like C# has no problems. Butthis
in JavaScript much more complex in comparison for people to reason about. People come from other languages expectingClass
to behave in a similar way to their language... and it doesn't.this
is fairly complex to understand completely, which is demonstrated (in a small part) by this article and many many other articles.In JavaScript,
this
is nothing more than an optional argument. So if you need this argument, why not just supply it as an argument?You don't have to ever worry about what
this
is if you never use it ;)Never type
console.log(this)
ever again.I've heard of eating your own dogfood before, but not drinking your own Kool-Aid. Seriously I've had a look at "nothis". It's verbose, it's implicitly magical, all it does is replace
this
withctx
, etc. These are not formulas for success in my opinion.If
this
in JavaScript would be same as in other language, why would someone use JavaScript? Power of JavaScript is due tothis
, otherwise, allnothis
and such things are also possible in other languages as well with some tweaks. There is no fun in not usingthis
.this
is cancer only for you, not for everyone !! And it will not become cancer for everyone by shouting it out loud.Disagree. The power it JavaScript is it runs almost everywhere. It's power is also in it's flexibility on how you like to code.
this
causes more problems than it solves.False. Read stack overflow. Google. You'll find many thousands of posts with people having problems with this.
Just because thousands of programmers have a hard time reasoning about threads in Java, should they be eliminated?
If there are roads to take and one causes less flat tires, which road would you choose to take?
It promotes the context from the side loaded
this
to a full fledged variable.This behaves in a way similar to ReasonReact.
It is used as a last resort for when you must use
this
.The first and best option is to write your software without
this
.Doesn't that make it interesting? Nobody writes such thing, but when you are in chains of method calls and wondering what is wrong and why
this
isn't what it supposed to be, knowing advanced stuff helps in fixing issues easily. I found this when I was trying to optimize event handlers and I usedbind
without knowing it's side effects.Interesting, and useful in an interview for discerning Javascript aptitude, are two entirely separate things. Nobody would know this off the top of their head without digging. You (nor I) didn't even know, somebody else had to point out why. Better to stick to converting strings to numbers and such, to weed out the ones who have absolutely no idea how to do the simple things, rather than trying to find ones who know incredibly esoteric stuff. Once you've weeded out the truly awful, try to find who's intermediate and who's advanced, by asking PRACTICAL intermediate/advanced questions, not patently esoteric stuff.
Ignoring binding arguments, just
.bind(thisArg)
can be visualized as following:Here it is clear that the returned function doesn't care about
this
.Same thing, without arrow function: