Classes are a template for creating objects. They encapsulate data with code to work on that data. Classes in JS are built on prototypes but also have some syntax and semantics that are unique to classes.... js class Point { constructor(x, y) { this.x...y; } static displayName = "Point"; static distance(a, b) { const...