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();
-
LIVE
Nerdrotic
2 hours agoCulture Is VITAL! Streaming BUST, Warner Bros. Buyout | Friday Night Tights 371 with Vara Dark
1,896 watching -
9:40
Lara Logan
1 hour agoHonoring Charlie Kirk - Going Rogue with Lara Logan - LIVE
12.1K22 -
3:03:45
The Charlie Kirk Show
4 hours agoCharlie Kirk: A Life of Faith, A Legacy That Endures
424K360 -
3:58:08
The Rubin Report
5 hours agoCharlie Kirk’s Best Moments on The Rubin Report
52.2K16 -
UPCOMING
FomoTV
16 hours ago🕯 Charlie Kick Assassinated — Radical Campus Rhetoric Made This Possible | Fomocast 09.11.25
5.31K3 -
3:08:36
Right Side Broadcasting Network
5 hours agoLIVE REPLAY: Latest News from the Trump White House - 9/12/25
64.3K17 -
LIVE
Dr Disrespect
5 hours ago🔴LIVE - DR DISRESPECT DESTROYS BORDERLANDS 4 - INSANE LOOT, CHAOS & RAGE
1,231 watching -
1:28:34
Mark Kaye
4 hours ago🔴 How Charlie Kirk's Killer, Tyler Robinson, Was Caught!
47K32 -
59:58
Jeff Ahern
2 hours ago $1.27 earnedFriday Freak out with Jeff Ahern
18K1 -
1:29:00
Russell Brand
6 hours agoLaura Loomer: The Most Banned Woman in the World - SF632
89.9K120