DEV Community

Discussion on: Back to Basics: Understanding and Conquering "this" in Javascript

Collapse
 
nicozerpa profile image
Nico Zerpa (he/him)

Wow, I had no idea that apply and call couldn't override this in arrow functions and functions in which bind was applied. Thank you!

Collapse
 
zackdotcomputer profile image
Zack Sheppard

This is something that I learned fresh as well while writing this. Not only arrow functions, but even regular ones too! bind turns out to be super powerful.