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();
-
1:04:02
Talk Nerdy 2 Us
12 hours agoPhishing Scams, Satellite Phones & Piracy Networks: Cybercrime's Next Leve
21.3K1 -
2:14:38
I_Came_With_Fire_Podcast
11 hours agoLive Fire (No Exercise)
38.4K2 -
1:05:52
Havoc
10 hours agoThankful | Stuck Off the Realness Ep. 21
78.3K3 -
2:05:40
Roseanne Barr
13 hours ago $66.97 earnedThe Perverse Reverse | The Roseanne Barr Podcast #76
126K185 -
1:36:41
Flyover Conservatives
1 day agoThink Texas and Florida are the Best? Think Again… - Lt. Governor Matt Pinnell; Leaky Gut, Dyslexia, ADHD, Eye Connection - Dr. Troy Spurrill | FOC Show
57.7K2 -
35:40
TheTapeLibrary
20 hours ago $4.71 earnedThe Priest Murders & The Mystery of William Toomey
44.1K7 -
1:29:16
Adam Does Movies
10 hours ago $4.98 earnedAwful New Christmas Movies! - Dear Santa - Our Little Secret - Nutcrackers - LIVE!
41.6K5 -
3:16:05
Nerdrotic
14 hours ago $36.03 earnedWoke Killed Comedy, Hollywood Infighting, Girlboss Rohirrim | Friday Night Tights 330 w/ It'sAGundam
133K34 -
1:16:08
Edge of Wonder
12 hours agoThe Maya Worshiped Turkeys, Bizarre Thanksgiving Facts & Weird News
36.2K8 -
1:10:47
Sarah Westall
13 hours agoARPANET and Who Really Invented Blockchain: Reconstructing Reality w/ Bryan Ferre
46.1K15