What are static methods?
Static methods are called on the class itself, not on instances.
Example:
class MathUtils {
static square(x) { return x * x; }
console.log(MathUtils.square(5)); // 25
Static methods are called on the class itself, not on instances.
Example:
class MathUtils {
static square(x) { return x * x; }
console.log(MathUtils.square(5)); // 25