Mid JavaScript

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

More from JavaScript Tutorial

All questions for this course