Posts

Showing posts from November, 2024

'this' Keyword JavaScript Notes

Image
                                        'this' keyword JavaScript Notes                 'this' keyword works differently in different Scope.         'this' in global Scope          console . log ( this )         output-          Window {window: Window, self: Window, document: document, name: '', location: Location, …}        'this' in strict and non-strict mode           'this' keyword works differently in strict and non-strict mode.                 "use strict"          function x(){          console.log(this);         }          x();            ...