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`);
-
The Mel K Show
2 hours agoMel K & Tim James | Healing is an Inside Job | 9-14-25
6.07K1 -
LIVE
IsaiahLCarter
5 hours agoCharlie Kirk, American Martyr (with Mikale Olson) || APOSTATE RADIO 028
71 watching -
1:35:39
SB Mowing
2 days agoIt took the WHOLE NEIGHBORHOOD to uncover this yards SHOCKING SECRET
58.8K57 -
12:52
ROSE UNPLUGGED
21 hours agoFrom Vision to Legacy: Charlie Kirk
45.8K19 -
1:14:22
Jeff Ahern
6 hours ago $9.85 earnedThe Sunday Show with Jeff Ahern
54.3K28 -
16:37
Professor Nez
6 hours ago🚨Internet MELTS DOWN over JD Vance & Trump BREAKING the Democrats!
64.8K174 -
18:40
itsSeanDaniel
8 hours agoPiers Morgan CALLED OUT and HUMILIATED by Andrew Tate
73K277 -
DVR
Times Now World
2 days agoLIVE: "ON CAM: How the Charlie Kirk Shooter ESCAPED – Shocking New Footage Revealed!"
86.7K16 -
1:45:51
Game On!
1 day ago $11.54 earnedWise Guys Reveal NFL Week 2 BEST BETS Now
100K8 -
26:57
Robbi On The Record
2 days agoMouth Breathing Is Why You’re Exhausted | with Dr. Melanie Silvestrini
73.1K7