DEV Community

Discussion on: .bind it's more than just this.

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!