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:58:09
The Charlie Kirk Show
4 hours agoThe Epstein Finale? + JD Proves Himself + Economic Boom | 12.23.2025
102K39 -
1:13:16
Sean Unpaved
4 hours ago49ers TAKE OUT Philip Rivers & Colts! | UNPAVED
24.2K4 -
LIVE
StoneMountain64
4 hours agoArc Raiders WIPE progress is SO FAST
124 watching -
1:56:06
Nikko Ortiz
5 hours agoAirsoft Fights And Fails... | Rumble LIVE
25.7K -
45:12
The HotSeat With Todd Spears
4 hours agoEP 229: THAT'S A WRAP!!!!!
26.9K16 -
6:17:32
LFA TV
17 hours agoLIVE & BREAKING NEWS! | TUESDAY 12/23/25
177K45 -
13:39
The Rubin Report
6 hours agoHow One Law Could Finally Force Both Parties to Stop Insider Trading for Good | Anna Paulina Luna
112K35 -
1:32:06
The Shannon Joy Show
23 hours ago🔥SJ LIVE Dec 23 - The Best Of The SJ Show 2025! From Flock Cameras To Palantir
24K3 -
LIVE
Viss
5 hours ago🔴LIVE - Grinding Quests, Workbenches, and Maxing Our XP! - Arc Raiders
135 watching -
1:44:56
The Mel K Show
5 hours agoMORNINGS WITH MEL K - Tempering Expectations for Justice in a Click Bait World 12-23-25
22.9K8