Execution Context
Introduction
Scenario
let x = 10;
function timesTen(a){
return a * 10;
}
let y = timesTen(x);
console.log(y); // 100Global Execution Context
Creation Phase
Execution Phase
Function Execution Context
Creation Phase

Execution Phase
References
Last updated


