java-script:closures
Differences
This shows you the differences between two versions of the page.
java-script:closures [2023/07/26 17:25] – created odefta | java-script:closures [2023/07/26 17:26] (current) – odefta | ||
---|---|---|---|
Line 9: | Line 9: | ||
-** Private Data**: Closures allow you to create private data and encapsulate functionality. Variables defined within the outer function are not directly accessible from outside, but the inner function has access to these variables, creating a private scope for those variables. | -** Private Data**: Closures allow you to create private data and encapsulate functionality. Variables defined within the outer function are not directly accessible from outside, but the inner function has access to these variables, creating a private scope for those variables. | ||
- **Callbacks and Event Handlers**: Closures are commonly used with callbacks and event handlers, enabling functions to " | - **Callbacks and Event Handlers**: Closures are commonly used with callbacks and event handlers, enabling functions to " | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code javascript> | ||
+ | function outerFunction() { | ||
+ | let outerVariable = 'I am from the outer function'; | ||
+ | |||
+ | function innerFunction() { | ||
+ | console.log(outerVariable); | ||
+ | } | ||
+ | |||
+ | return innerFunction; | ||
+ | } | ||
+ | |||
+ | const closureExample = outerFunction(); | ||
+ | closureExample(); | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
java-script/closures.1690381530.txt.gz · Last modified: 2023/07/26 17:25 by odefta