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`);
-
23:07
DeVory Darkins
5 hours ago $8.75 earnedDemocrats EMBARRASSED after No Kings Protest officially FLOPS
12.3K120 -
2:45:26
Barry Cunningham
5 hours agoV.P.J.D. VANCE AND SEC OF WAR PETE HEGSETH GIVE REMARKS AT U.S. MARINES 250TH ANNIVERSARY
104K13 -
LIVE
Tundra Tactical
6 hours ago $7.01 earned🛑{LIVE NOW!!} The Great Tundra Nation Gun Show!!!! Presented By MGS Trade School
714 watching -
4:35:07
Right Side Broadcasting Network
4 days agoLIVE: VP Vance Attends the U.S. Marine Corps 250th Anniversary Celebration - 10/18/25
56.8K41 -
LIVE
Mally_Mouse
22 hours ago🔥🍺Spicy HYDRATE Saturday!🍺🔥-- Let's Play: Prison Life 2
101 watching -
2:57:52
Pepkilla
4 hours agoBattlefield 6 SMG Camo Grind
7.36K1 -
14:22
Exploring With Nug
11 hours ago $4.29 earnedThe River Exposed a Secret That No One Was Supposed to See!
41.4K4 -
23:23
MYLUNCHBREAK CHANNEL PAGE
12 hours agoThe Sunken Basilica
86.1K10 -
8:05
Hollywood Exposed
3 hours agoCharlie Sheen STUNS Tucker Carlson With His Shocking Political Confession
8.77K24 -
LIVE
SavageJayGatsby
3 hours ago🔥 Spicy Saturday – Let's Play: Prison Life 2🔥
73 watching