SSSulabh Sumanincall-js-ss.hashnode.devยทMar 4 ยท 3 min readThe Magic of this, call(), apply(), and bind() in JavaScript ๐ What Does this Mean in JavaScript? Simple meaning: ๐ this means โwho is calling the function.โ It refers to the object that is executing the function. ๐ 1๏ธโฃ this Inside Normal Functions Example:00
DDivakarindivakar29.hashnode.devยทMar 2 ยท 8 min readLogic Behind "this" in JSIf you are learning JS(JavaScript) you have seen "this" keyword a lot. Generally, beginners try to remember the working of "this" in JS also sometimes they are told to remember it by their teachers. B00