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();
-
19:23
DeVory Darkins
6 hours ago $8.86 earnedShocking Update Released Regarding Shooter's Roommate as Democrats Issue Insane Response
19.6K111 -
19:53
Stephen Gardner
8 hours ago🔥EXPOSED: Charlie Kirk Shooter's Trans Partner Tells FBI EVERYTHING!
36.2K219 -
DVR
BlackDiamondGunsandGear
4 hours agoAfter Hours Armory / RIP Charlie Kirk / What we know
13K2 -
29:09
Afshin Rattansi's Going Underground
1 day agoThe Political Life of Malcolm X: Busting the Myths (Prof. Kehinde Andrews)
27.4K13 -
DVR
DLDAfterDark
4 hours ago $1.35 earnedThe Assassination of Charlie Kirk - Just What We KNOW
13.7K6 -
1:33:56
MattMorseTV
5 hours ago $31.76 earned🔴Exposing his PARTNER IN CRIME.🔴
67.2K251 -
1:26:51
vivafrei
9 hours agoCharlie Kirk Assassination - When Peaceful Discussion Becomes Impossible - With Jose Vege
91.2K221 -
2:04:12
Mally_Mouse
1 day ago🌶️ 🥵Spicy BITE Saturday!! 🥵🌶️- Let's Play: Supermarket Together
44.2K3 -
1:15:37
BooniesHQ
9 hours ago $6.95 earnedGame Of SKATE Donny Hixson Vs. Chris Massie: Boonies Skate Night 2
64K7 -
2:56:25
Barry Cunningham
10 hours agoTHE TAKING OF CHARLIE KIRK HAS IGNITED A FLAME! AND A BREAKING (BUT NOT SHOCKING) UPDATE!
114K118