Simplifying "this" in JavaScript
Overview
The this keyword can be one of the most confusing concepts in JavaScript. We will explain this this in layman's terms with enough examples.
this is the object the function is a property of
One liner,
obj.someFunc(this);
Here, this is in t...
blog.shams-nahid.com8 min read