Javascript's "this" binding
this keyword in Javascript can sometimes be confusing due to lack of proper knowledge. Here I am going to discuss how this work.
this belong to a Javascript function. Inside a function this keyword refers to an object.
var a = 4;
function fun() {
...
biki321.hashnode.dev4 min read