DEV Community

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

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!