Premium Only Content
![Learn JavaScript STATIC keyword in 8 minutes! ⚡](https://1a-1791.com/video/s8/1/j/R/J/l/jRJlo.qR4e-small-Learn-JavaScript-STATIC-key.jpg)
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:38:54
TimcastIRL
11 hours agoElon Secret Child Scandal ERUPTS, Ashley St. Clair Story Goes Viral w/Bethany Mandel | Timcast IRL
167K107 -
2:04:52
Kim Iversen
13 hours agoElon's Pumping Out Babies Like They're Tesla Model 3's | EU Panics Over Peace Talks, Wants More War
161K152 -
1:05:35
Man in America
15 hours agoFort Knox & Trump’s Secret Gold Move—The Financial Reset NO ONE Is Ready For?
106K126 -
2:21:20
Robert Gouveia
12 hours agoTrump Goes to SCOTUS! Judge CAVES on DOGE? Fani Willis Not Happy!
120K32 -
20:41
Stephen Gardner
12 hours ago🔥You Won't BELIEVE What JUST Happened To Don Trump Jr.!!
128K209 -
58:00
The StoneZONE with Roger Stone
10 hours agoEuropean Leaders Resist Trump Peace Overtures To Their Own Demise | The StoneZONE w/ Roger Stone
87.3K12 -
9:29
AlaskanBallistics
12 hours ago $11.30 earnedWyoming Suppressors and Rifles at Shot Show 2025
107K6 -
1:06:40
Donald Trump Jr.
16 hours agoThe Left is Taking one L After Another, Live with Michael Knowles | Triggered Ep. 217
196K147 -
47:17
Kimberly Guilfoyle
16 hours agoWoke Gets DOGE’d, Live with AJ Rice & Jarrett Stepman | Ep. 197
142K44 -
20:11
Candace Show Podcast
14 hours agoBecoming Brigitte: Candace Owens x Xavier Poussard | Ep 6
214K370