diff --git a/content/roadmaps/106-javascript/content/111-javascript-this-keyword/101-this-in-a-method.md b/content/roadmaps/106-javascript/content/111-javascript-this-keyword/101-this-in-a-method.md index 9c7f754fa..c125e5f41 100644 --- a/content/roadmaps/106-javascript/content/111-javascript-this-keyword/101-this-in-a-method.md +++ b/content/roadmaps/106-javascript/content/111-javascript-this-keyword/101-this-in-a-method.md @@ -1 +1,7 @@ -# This in a method \ No newline at end of file +# this in a method + +Methods are properties of an object which are functions. The value of this inside a method is equal to the calling object. In simple words, this value is the object “before dot”, the one used to call the method. + +Free Content +`this` in methods +Short and clear post about the `this` keyword