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`);
-
8:02
China Uncensored
9 hours agoChina Just Took The First Step Towards WAR
4.82K7 -
DVR
Flyover Conservatives
22 hours agoWhy Did Jesus Really Come? It’s NOT What You Think - Pedro Adao | FOC Show
7.83K1 -
LIVE
DLDAfterDark
1 hour agoYo Homie! Is That My Briefcase?? EDC & Gun Talk - Blue Waffle Giveaway Pre Stream
300 watching -
1:34:23
Glenn Greenwald
6 hours agoSydney Shooting Exploited for Pro-Israel Censorship and Anti-Muslim Crackdowns; How Media DEI Was the Opposite of Diversity | SYSTEM UPDATE #559
120K93 -
1:09:01
MattMorseTV
4 hours ago $0.79 earned🔴Trump just handed Congress THE EVIDENCE.🔴
38.2K87 -
1:01:54
BonginoReport
6 hours agoVanity Fair Goes Nuclear On Trump’s Inner Circle - Nightly Scroll w/ Hayley Caronia (Ep.198)
137K53 -
53:25
Katie Miller Pod
8 hours ago $5.88 earnedFBI Director Kash Patel & Alexis Wilkins on Balancing Their Relationship with Work | KMP Ep.19
35.8K25 -
1:15:37
Candace Owens
6 hours agoErika And I Sat Down. Here’s What Happened. | Candace Ep 280
202K722 -
2:06:47
Quite Frankly
9 hours agoDestroying the West to Save the West? | J Gulinello | 12/16/25
47.2K12 -
13:51
ARFCOM News
7 hours ago $0.11 earnedShould Bystander Have Blasted? + DOJ Lawyers: Don't Make Us Defend Gun Rights! + How To STOP Flock?
41.6K12