From cd6e471901078588487b6f93b88ad4598c6092f9 Mon Sep 17 00:00:00 2001 From: saurabh24thakur Date: Thu, 2 Oct 2025 10:40:14 +0530 Subject: [PATCH] Add topic: 'this in functions and objects' --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/README.md b/README.md index 924a02f7..28284517 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,9 @@ All the translations for this repo will be listed below: 31. [**Design Patterns**](#31-design-patterns) 32. [**Partial Applications, Currying, Compose and Pipe**](#32-partial-applications-currying-compose-and-pipe) 33. [**Clean Code**](#33-clean-code) +34. [**this in functions and objects**](#34-this-in-functions-and-objects) + +
@@ -1284,6 +1287,34 @@ This software is licensed under MIT License. See [License](https://github.com/le **[⬆ Back to Top](#table-of-contents)** + +--- + +## 34. this in functions and objects + +### Reference + +- [Understanding `this` in JavaScript — MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this) +- [JavaScript `this` Keyword Explained — DigitalOcean](https://www.digitalocean.com/community/tutorials/understanding-the-this-keyword-in-javascript) +- [Mastering `this` in JS — Flavio Copes](https://flaviocopes.com/javascript-this/) +- [JavaScript `this` Keyword for Beginners — freeCodeCamp](https://www.freecodecamp.org/news/javascript-this-keyword/) + +### Articles + +- [Understanding `this` in JavaScript — MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this) +- [JavaScript `this` Keyword Explained — DigitalOcean](https://www.digitalocean.com/community/tutorials/understanding-the-this-keyword-in-javascript) +- [Mastering `this` in JS — Flavio Copes](https://flaviocopes.com/javascript-this/) +- [JavaScript `this` Keyword for Beginners — freeCodeCamp](https://www.freecodecamp.org/news/javascript-this-keyword/) + +### video Videos + +- [JavaScript `this` Explained — Fun Fun Function](https://www.youtube.com/watch?v=gvicrj31JOM) +- [Understanding `this` in JavaScript — Academind](https://www.youtube.com/watch?v=Ukg_U3CnJWI) +- [JavaScript `this` Keyword Tutorial — Programming with Mosh](https://www.youtube.com/watch?v=qoSksQ4s_hg) + +**[⬆ Back to Top](#table-of-contents)** + +