#javascript #this-keyword #oop #fundamentals 6 min read The this keyword in JavaScript - four binding rules in one place
#javascript #new-operator #this-keyword #prototype #oop #fundamentals 17 min read new (and this) in JavaScript - what the keyword actually does
Note May 6, 2026 How call, apply, and bind work in JavaScript Three methods on Function.prototype with the same goal - setting this. The differences are in (a) whether they invoke immediately, and (b) how you pass arguments. A quick rundown of which to use when. # javascript # this-keyword # fundamentals