Static methods in JS "Classes" Methods that must be invoked on the class itself, not on its instances class Human { constructor(name) { this.name = name; } getName() { return this.name; } static isFromEarth() { return true; } }