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();
-
8:02
China Uncensored
9 hours agoChina Just Took The First Step Towards WAR
4.82K7 -
DVR
Flyover Conservatives
22 hours agoWhy Did Jesus Really Come? It’s NOT What You Think - Pedro Adao | FOC Show
7.83K1 -
LIVE
DLDAfterDark
1 hour agoYo Homie! Is That My Briefcase?? EDC & Gun Talk - Blue Waffle Giveaway Pre Stream
301 watching -
1:34:23
Glenn Greenwald
6 hours agoSydney Shooting Exploited for Pro-Israel Censorship and Anti-Muslim Crackdowns; How Media DEI Was the Opposite of Diversity | SYSTEM UPDATE #559
120K93 -
1:09:01
MattMorseTV
4 hours ago $0.79 earned🔴Trump just handed Congress THE EVIDENCE.🔴
38.2K88 -
1:01:54
BonginoReport
6 hours agoVanity Fair Goes Nuclear On Trump’s Inner Circle - Nightly Scroll w/ Hayley Caronia (Ep.198)
137K53 -
53:25
Katie Miller Pod
8 hours ago $5.88 earnedFBI Director Kash Patel & Alexis Wilkins on Balancing Their Relationship with Work | KMP Ep.19
35.8K26 -
1:15:37
Candace Owens
6 hours agoErika And I Sat Down. Here’s What Happened. | Candace Ep 280
202K732 -
2:06:47
Quite Frankly
9 hours agoDestroying the West to Save the West? | J Gulinello | 12/16/25
47.2K12 -
13:51
ARFCOM News
7 hours ago $0.11 earnedShould Bystander Have Blasted? + DOJ Lawyers: Don't Make Us Defend Gun Rights! + How To STOP Flock?
41.6K12