Tue May 21 2024 06:30:13 GMT+0000 (Coordinated Universal Time)
Saved by @ishwarpatel22
function outerFunction() { let outerVariable = "I am outside!"; function innerFunction() { console.log(outerVariable); } return innerFunction; } const closureExample = outerFunction(); closureExample(); // Output: "I am outside!"
lexical scope woks here
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments