0 votes
in JavaScript by
What is function execution context?

1 Answer

0 votes
by

Whenever a function is invoked, the JavaScript engine creates a different type of Execution Context known as a Function Execution Context (FEC) within the Global Execution Context (GEC) to evaluate and execute the code within that function.

...