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();
-
23:07
DeVory Darkins
5 hours ago $8.75 earnedDemocrats EMBARRASSED after No Kings Protest officially FLOPS
12.3K120 -
2:45:26
Barry Cunningham
5 hours agoV.P.J.D. VANCE AND SEC OF WAR PETE HEGSETH GIVE REMARKS AT U.S. MARINES 250TH ANNIVERSARY
104K13 -
LIVE
Tundra Tactical
6 hours ago $7.01 earned🛑{LIVE NOW!!} The Great Tundra Nation Gun Show!!!! Presented By MGS Trade School
720 watching -
4:35:07
Right Side Broadcasting Network
4 days agoLIVE: VP Vance Attends the U.S. Marine Corps 250th Anniversary Celebration - 10/18/25
56.8K41 -
LIVE
Mally_Mouse
22 hours ago🔥🍺Spicy HYDRATE Saturday!🍺🔥-- Let's Play: Prison Life 2
102 watching -
2:57:52
Pepkilla
4 hours agoBattlefield 6 SMG Camo Grind
7.36K1 -
14:22
Exploring With Nug
11 hours ago $4.29 earnedThe River Exposed a Secret That No One Was Supposed to See!
41.4K4 -
23:23
MYLUNCHBREAK CHANNEL PAGE
12 hours agoThe Sunken Basilica
86.1K10 -
8:05
Hollywood Exposed
3 hours agoCharlie Sheen STUNS Tucker Carlson With His Shocking Political Confession
8.77K24 -
LIVE
SavageJayGatsby
3 hours ago🔥 Spicy Saturday – Let's Play: Prison Life 2🔥
75 watching