DEV Community

.bind it's more than just this.

Adam Crockett 🌀 on May 22, 2020

You might know about bind, it takes a function and binds the this to any object you like. At least that's the common usage. Bind has another hidden...
Collapse
 
madeline_pc profile image
Madeline

Whoa, this just blew my mind.
Also, I did not know, or forgot, that null is an object.
I have so much to think about today.

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀 • Edited

It's the little things 😁.
This is interesting too:

Object.create(null) 
// vs
Object.create({})

The object created from null will be blank, no prototype!

Collapse
 
vonheikemen profile image
Heiker

I think the term is partial application.

Collapse
 
xavierbrinonecs profile image
Xavier Brinon

well, yes but I wouldn't advise doing it this way, a bound function is quite exotic: ecma-international.org/ecma-262/#s...

showing alternatives would be cool for beginners, like
add5 = x => add(5, x) which is far less confusing,
and even better
add = x => y => x + y;
add5 = add(5)

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀 • Edited

I 100% agree it is not idiomatic however that is not the point, The point is, I did not know about this for many years and I probably would have went down the functional path sooner had I known about this, I would then look into currying as you say. If ever there was an edge case where currying could not be used and an arg needed to be passed, this might come in handy. (alot of my posts talk about exotic less than idiomatic things, see operator overloading as an example)

I have added a disclaimer.

Collapse
 
vonheikemen profile image
Heiker

I do prefer the first option you mention. Now, I don't think a bound function is exotic anymore. When the class keyword was first introduced in ES6 a lot of people found that .bind helped them keep the methods behavior consistent. Maybe they don't know they can use it to achieve partial application but they know .bind exists.

I actually wrote something about partial application a while ago, here is the link.

Thread Thread
 
xavierbrinonecs profile image
Xavier Brinon
Thread Thread
 
vonheikemen profile image
Heiker

Today I learned.

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀

Thank you Heiker im sure many will find this useful. I kept the language to an accessible level due to the tags.

Collapse
 
shubhamk profile image
Shubham Kamath

Never knew bind could do this! Thanks 😁
I'm waiting for the series. 🥳