Premium Only Content

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`);
-
19:23
DeVory Darkins
6 hours ago $8.86 earnedShocking Update Released Regarding Shooter's Roommate as Democrats Issue Insane Response
19.6K111 -
19:53
Stephen Gardner
8 hours ago🔥EXPOSED: Charlie Kirk Shooter's Trans Partner Tells FBI EVERYTHING!
36.2K219 -
DVR
BlackDiamondGunsandGear
4 hours agoAfter Hours Armory / RIP Charlie Kirk / What we know
13K2 -
29:09
Afshin Rattansi's Going Underground
1 day agoThe Political Life of Malcolm X: Busting the Myths (Prof. Kehinde Andrews)
27.4K13 -
DVR
DLDAfterDark
4 hours ago $1.35 earnedThe Assassination of Charlie Kirk - Just What We KNOW
13.7K6 -
1:33:56
MattMorseTV
5 hours ago $31.76 earned🔴Exposing his PARTNER IN CRIME.🔴
67.2K251 -
1:26:51
vivafrei
9 hours agoCharlie Kirk Assassination - When Peaceful Discussion Becomes Impossible - With Jose Vege
91.2K221 -
2:04:12
Mally_Mouse
1 day ago🌶️ 🥵Spicy BITE Saturday!! 🥵🌶️- Let's Play: Supermarket Together
44.2K3 -
1:15:37
BooniesHQ
9 hours ago $6.95 earnedGame Of SKATE Donny Hixson Vs. Chris Massie: Boonies Skate Night 2
64K7 -
2:56:25
Barry Cunningham
10 hours agoTHE TAKING OF CHARLIE KIRK HAS IGNITED A FLAME! AND A BREAKING (BUT NOT SHOCKING) UPDATE!
114K118