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:13:26
Badlands Media
12 hours agoDevolution Power Hour Ep. 390 - Political Warfare, Jimmy Kimmel & ANTIFA
87.4K26 -
2:43:56
TimcastIRL
7 hours agoJimmy Kimmel FIRED, ABC Pulls Show Over Charlie Kirk Assassination Comments | Timcast IRL
373K202 -
1:58:02
Barry Cunningham
7 hours agoJIMMY KIMMEL CANCELLED | OBAMA IS WHINING! | JD VANCE ON JESSE WATTERS!
104K120 -
2:34:46
TheSaltyCracker
7 hours agoWe Got Him Fired ReeEEStream 9-17-25
150K362 -
43:44
Man in America
9 hours agoAmericans Are About to Lose Everything—And They Don’t Even Know It
54.2K27 -
1:41:11
Adam Does Movies
2 days ago $2.89 earnedTalking Movies + Ask Me Anything - LIVE
41.9K2 -
3:40:08
I_Came_With_Fire_Podcast
15 hours agoNASA Blocks China, TPUSA BOOSTED, Chinese Spamoflauge, & Factional Division
41.6K6 -
33:40
Jamie Kennedy
7 hours agoEp 222 Processing the Loss of Charlie Kirk | HTBITY with Jamie Kennedy
62.1K19 -
1:32:05
Badlands Media
22 hours agoAltered State S3 Ep. 46: Tactical Nukes, Thermite, and the 9/11 Puzzle
74.7K10 -
9:18
ARFCOM News
12 hours ago $1.97 earnedNSSF "Celebrates" ATF Partnership | Glocks BANNED | Redundant Spooky Boi Ban
39.3K9