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`);
-
1:14:09
Chad Prather
15 hours agoHow to Recognize When God Has Already Answered Your Prayer
13.9K19 -
LIVE
LFA TV
12 hours agoLIVE & BREAKING NEWS! | WEDNESDAY 12/17/25
2,277 watching -
1:33:59
Game On!
18 hours ago $1.53 earnedBIGGEST 2025 College Football Playoff 1st Round BETS NOW!
21.6K2 -
1:04:39
Crypto Power Hour
11 hours ago $4.69 earnedState of Early Stage Crypto Investor Rob Good
39.6K8 -
1:24:24
LIVE WITH CHRIS'WORLD
18 hours agoTHE WAKE UP CALL - 12/17/2025 - Episode 27
20.9K -
27:51
ThinkStory
19 hours agoIT: WELCOME TO DERRY Season 1 Ending Explained!
26.9K -
5:29
Gamazda
14 hours ago $1.82 earnedMetallica - Nothing Else Matters (Live Piano in a Church)
19.2K8 -
2:50:56
The Confessionals
22 hours agoHe Killed a Monster (Then They Told Him to Stay Silent)
22.9K9 -
41:42
Brad Owen Poker
16 hours ago $0.78 earnedMy BIGGEST WIN EVER!! $50,000+ In DREAM Session!! Must See! BEST I’ve Ever Run! Poker Vlog Ep 360
15.6K1 -
17:53
The Illusion of Consensus
20 hours ago $1.10 earnedWhat Women REALLY Want in Public (It’s Not What You Think) | Geoffrey Miller
17.6K7