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`);
-
2:31:01
The Connect: With Johnny Mitchell
1 day ago $34.65 earned"It's About To Get Worse"- CIA Agent Andrew Bustamante Explains Why It's Time To Leave America
37.7K71 -
16:21
The Pascal Show
1 day ago $1.20 earned'THE FEDS MADE THIS UP!' Candace Owens Drops BOMBSHELL Pushing Back On Details In Charlie Kirk Case
3.53K5 -
LIVE
Lofi Girl
2 years agoSynthwave Radio 🌌 - beats to chill/game to
273 watching -
25:39
DeVory Darkins
12 hours ago $20.02 earnedMass shooting erupts in Michigan as bombshell study shows left wing political violence skyrocketed
34.7K107 -
5:55:33
MattMorseTV
10 hours ago $123.95 earned🔴Portland ANTIFA vs. ICE.🔴
161K323 -
3:13:00
Badlands Media
1 day agoThe Narrative Ep. 40: Acceleratia.
70.9K25 -
6:57:01
SpartakusLIVE
9 hours ago#1 Solo Spartan Sunday || TOXIC Comms, TACTICAL Wins, ENDLESS Content
61K5 -
49:45
Sarah Westall
8 hours agoComedians take Center Stage as World goes Nuts w/ Jimmy Dore
43.6K20 -
3:26:14
IsaiahLCarter
16 hours ago $11.68 earnedAntifa Gets WRECKED. || APOSTATE RADIO 030 (Guests: Joel W. Berry, Josie the Redheaded Libertarian)
52.2K1 -
4:44:18
CassaiyanGaming
7 hours agoArena Breakout: Infinite Dawg
32.4K2