Premium Only Content
![Learn JavaScript CLOSURES in 10 minutes! 🔒](https://1a-1791.com/video/s8/1/1/F/E/l/1FElo.qR4e-small-Learn-JavaScript-CLOSURES-i.jpg)
Learn JavaScript CLOSURES in 10 minutes! 🔒
// closure = A function defined inside of another function,
// the inner function has access to the variables
// and scope of the outer function.
// Allow for private variables and state maintenance
// Used frequently in JS frameworks: React, Vue, Angular
00:00:00 intro
00:00:31 example 1
00:02:19 example 2
00:07:00 example 3
00:10:08 conclusion
// ---------- EXAMPLE 1 ----------
function outer(){
const message = "Hello";
function inner(){
console.log(message);
}
inner();
}
message = "Goodbye";
outer();
// ---------- EXAMPLE 2 ----------
function createCounter() {
let count = 0;
function increment() {
count++;
console.log(`Count increased to ${count}`);
}
function getCount() {
return count;
}
return {increment, getCount};
}
const counter = createCounter();
counter.increment();
counter.increment();
counter.increment();
console.log(`Current count: ${counter.getCount()}`);
// ---------- EXAMPLE 3 ----------
function createGame(){
let score = 0;
function increaseScore(points){
score += points;
console.log(`+${points}pts`);
}
function decreaseScore(points){
score -= points;
console.log(`-${points}pts`);
}
function getScore(){
return score;
}
return {increaseScore, decreaseScore, getScore};
}
const game = createGame();
game.increaseScore(5);
game.increaseScore(6);
game.decreaseScore(3);
console.log(`The final score is ${game.getScore()}pts`);
-
2:38:54
TimcastIRL
11 hours agoElon Secret Child Scandal ERUPTS, Ashley St. Clair Story Goes Viral w/Bethany Mandel | Timcast IRL
167K107 -
2:04:52
Kim Iversen
13 hours agoElon's Pumping Out Babies Like They're Tesla Model 3's | EU Panics Over Peace Talks, Wants More War
161K152 -
1:05:35
Man in America
15 hours agoFort Knox & Trump’s Secret Gold Move—The Financial Reset NO ONE Is Ready For?
106K126 -
2:21:20
Robert Gouveia
12 hours agoTrump Goes to SCOTUS! Judge CAVES on DOGE? Fani Willis Not Happy!
120K32 -
20:41
Stephen Gardner
12 hours ago🔥You Won't BELIEVE What JUST Happened To Don Trump Jr.!!
128K209 -
58:00
The StoneZONE with Roger Stone
10 hours agoEuropean Leaders Resist Trump Peace Overtures To Their Own Demise | The StoneZONE w/ Roger Stone
87.3K12 -
9:29
AlaskanBallistics
12 hours ago $11.30 earnedWyoming Suppressors and Rifles at Shot Show 2025
107K6 -
1:06:40
Donald Trump Jr.
16 hours agoThe Left is Taking one L After Another, Live with Michael Knowles | Triggered Ep. 217
196K147 -
47:17
Kimberly Guilfoyle
16 hours agoWoke Gets DOGE’d, Live with AJ Rice & Jarrett Stepman | Ep. 197
142K44 -
20:11
Candace Show Podcast
14 hours agoBecoming Brigitte: Candace Owens x Xavier Poussard | Ep 6
214K366