What is execution Context in Javascript?

Execution context is a very important concept in Javascript. The article is for me to try to explain it so that it deepens my understanding.

  • Global Execution Context Global Execution Context creates a global object (window object). The ‘this’ keyword in global execution context refers to the global object. Global execution context is not inside a function

  • Hoisting