'this' Keyword JavaScript Notes
'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(); ...