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();
-
2:55:38
Turning Point USA
3 hours agoWASHINGTON D.C. PRAYER VIGIL FOR CHARLIE KIRK
38.6K17 -
35:54
The Mel K Show
3 hours agoMel K & Tim James | Healing is an Inside Job | 9-14-25
18.2K2 -
LIVE
IsaiahLCarter
6 hours ago $0.87 earnedCharlie Kirk, American Martyr (with Mikale Olson) || APOSTATE RADIO 028
423 watching -
16:43
Mrgunsngear
10 hours ago $1.35 earnedKimber 2K11 Pro Review 🇺🇸
7.63K11 -
13:40
Michael Button
1 day ago $0.33 earnedThe Strangest Theory of Human Evolution
5.34K10 -
10:19
Blackstone Griddles
1 day agoMahi-Mahi Fish Tacos on the Blackstone Griddle
4.27K1 -
23:51
Jasmin Laine
1 day ago“Stop Wasting My Time!”—Trump's BRUTAL WARNING To Canada As Poilievre ROASTS CBC LIVE
4.12K22 -
9:54
Millionaire Mentor
1 day agoNBC Host EXPOSES JB Pritzker For Saying This About Trump
1.83K4 -
1:35:39
SB Mowing
2 days agoIt took the WHOLE NEIGHBORHOOD to uncover this yards SHOCKING SECRET
86.8K61 -
12:52
ROSE UNPLUGGED
23 hours agoFrom Vision to Legacy: Charlie Kirk
54.1K19