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`);
-
LIVE
SavageJayGatsby
1 day agoSpicy Saturday | Let's Play: Grounded
73 watching -
13:37
Exploring With Nug
7 hours ago $1.41 earnedTrying to Uncover Secrets in St Augustine’s Waters Missing Person Search!
6.27K1 -
LIVE
Mally_Mouse
1 day ago🔥🍺Spicy HYDRATE Saturday!🍺🔥-- Let's Play: Grounded
69 watching -
24:09
MYLUNCHBREAK CHANNEL PAGE
1 day agoDams Destroyed The Ozarks
60.6K27 -
1:32:54
Jeff Ahern
5 hours ago $24.39 earnedThe Saturday Show with Jeff Ahern
83.3K9 -
LIVE
TheManaLord Plays
7 hours agoMANA SUMMIT - DAY 1 ($10,200+) | BANNED PLAYER SMASH MELEE INVITATIONAL
204 watching -
LIVE
Major League Fishing
2 days agoLIVE Tackle Warehouse Invitationals Championship, Day 2
128 watching -
GamerGril
4 hours agoScream Queens 💕 Goth & Gore 💕 Unpossess
17.1K2 -
LIVE
CassaiyanGaming
7 hours agoMYSTIVITHON - 12 HOUR CHARITY STREAM 🌊
76 watching -
2:14:16
Lara Logan
20 hours agoSTANDING AGAINST THE GLOBAL ELITE with Trump Ally President Milorad Dodik of Republika Srpska | Ep34
38.8K25