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();
-
31:02
Bek Lover Podcast
12 hours agoCalifornia Gets A Wake Up Call & Other Strange News...
1.06K1 -
8:13
PerpetualHealthCo
17 hours agoCattle GHG & Hidden Technology?
1.2K4 -
54:41
CharLee Simons Presents Do Not Talk
1 month agoDO NOT TALK with SAM ANTHONY (YourNews.com) 12-9-24
220 -
4:57:03
Nobodies Gaming
13 hours ago $7.45 earnedNobodies Rumble Gaming TEST STREAM
48.4K6 -
59:49
The StoneZONE with Roger Stone
10 hours agoUpdate on Andrew & Tristan Tate w/ Lawyer Joe McBride +What will Trump do about J6ers? The StoneZONE
159K23 -
1:08:56
Man in America
14 hours ago🔴 LIVE: California Wildfires—APOCALYPTIC Warning or Globalist Land Grab?
76.1K69 -
1:30:04
Donald Trump Jr.
16 hours agoFires Rage Across LA, How Dems Destroyed the Golden state, Live with Alex Marlow, John Phillips, and Joe Bastardi | TRIGGERED Ep.206
164K375 -
1:37:52
Glenn Greenwald
14 hours agoInternational Rage—From EU To Brazil—Over Zuckerberg’s Vow To End Censorship; Lee Fang On Financial Interests Behind H1B & LA Mayor Skipping Town | SYSTEM UPDATE #386
100K82 -
58:44
Flyover Conservatives
1 day agoInauguration Danger: Is Trump Walking Into a Trap? - Sheriff Richard Mack | FOC Show
47.6K16 -
1:48:50
Precision Rifle Network
1 day agoS4E1 - Guns & Grub - Back like a bad rash!
77.8K5