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:27:53
TheSaltyCracker
3 hours agoGot Him ReeEEStream 9-12-25
206K185 -
52:11
Sarah Westall
5 hours agoBread and Circus Keeps you Financially Ignorant – Its Better for the Elites w/ Chris Russo
25.9K2 -
LIVE
I_Came_With_Fire_Podcast
11 hours agoFriday Night Live Fire
258 watching -
DVR
Flyover Conservatives
13 hours agoFrom Demonic Deception to Divine Direction: Sid Roth’s Radical Encounter With God | FOC Show
18.7K1 -
LIVE
Chrissie Mayr
1 hour agoChrissie Mayr Reactions to Charlie Kirk, Liberal Celebrations, and More
302 watching -
1:05:46
AlaskanBallistics
2 hours ago $0.66 earnedRemembering Charlie Kirk
12.1K1 -
1:23:27
Glenn Greenwald
4 hours agoNetanyahu’s Crude Exploitation of Charlie Kirk’s Death to Get the American Right Back into Line; Plus: Q&A With Glenn on Charlie Kirk's Assassination, Online Civil Discourse, and More | SYSTEM UPDATE #514
175K106 -
4:10:25
Nerdrotic
8 hours ago $14.65 earnedCulture Is VITAL! Streaming BUST, Warner Bros. Buyout | Friday Night Tights 371 with Vara Dark
198K23 -
1:02:32
BonginoReport
6 hours agoCharlie Kirk’s Assassin In Custody, Details Emerge - Nightly Scroll w/ Hayley Caronia (Ep.133)
183K178 -
LIVE
LFA TV
23 hours agoKILLER CAUGHT LIVE PRESSER! - FRIDAY 9/12/25
707 watching