Premium Only Content
Learn JavaScript STATIC keyword in 8 minutes! ⚡
// static = keyword that defines properties or methods that belong
// to a class itself rather than the objects created
// from that class (class owns anything static, not the objects)
// ----------- EXAMPLE 1 -----------
class MathUtil{
static PI = 3.14159;
static getDiameter(radius){
return radius * 2;
}
static getCircumference(radius){
return 2 * this.PI * radius;
}
static getArea(radius){
return this.PI * radius * radius;
}
}
console.log(MathUtil.PI);
console.log(MathUtil.getDiameter(10));
console.log(MathUtil.getCircumference(10));
console.log(MathUtil.getArea(10));
// ----------- EXAMPLE 2 -----------
class User{
static userCount = 0;
constructor(username){
this.username = username;
User.userCount++;
}
static getUserCount(){
console.log(`There are ${User.userCount} users online`);
}
sayHello(){
console.log(`Hello, my username is ${this.username}`);
}
}
const user1 = new User("Spongebob");
const user2 = new User("Patrick");
const user3 = new User("Sandy");
user1.sayHello();
user2.sayHello();
user3.sayHello();
User.getUserCount();
-
30:25
Glenn Greenwald
12 hours agoGlenn Takes Your Questions Post-Election On The Trump Admin & More
169K67 -
1:26:23
vivafrei
15 hours agoChinese and Indian INFILTRATION in Canadian Government? Live with David Krayden! Viva Frei Live
201K118 -
52:17
Candace Show Podcast
15 hours agoFight Night! Me VS Marc Lamont Hill On Transgenderism | Candace Ep 104
197K398 -
1:12
Mike Tyson
15 hours ago $30.55 earnedIt's a war.
147K63 -
1:04:11
In The Litter Box w/ Jewels & Catturd
1 day agoProsecute/Fauci | In the Litter Box w/ Jewels & Catturd – Ep. 692 – 11/15/2024
161K64 -
5:17
BFFs: Dave Portnoy, Josh Richards & Bri Chickenfry
10 days agoSmallest Man
292K25 -
1:45:03
The Quartering
17 hours agoRFK Big Pharma Meltdown, Alex Jones WIN & Shadow Government To Oppose Trump!
171K48 -
1:53:23
Tucker Carlson
17 hours agoFasting, Prayer, Meditation, & the Global Persecution of Christians (With Hallow CEO Alex Jones)
224K129 -
53:03
Ben Shapiro
17 hours agoEp. 2086 - It’s MAHA TIME: Trump Picks RFK Jr.
167K115 -
57:03
Russell Brand
20 hours ago“I Can PROVE Biden Took CORRUPT Money From Ukraine” – Rudy Giuliani on The Biden Crime Family –SF494
239K403