A class is a blueprint for creating objects. It defines what properties and methods objects of that type will have.
class Car {
// Blueprint for car objects
}
const myCar = new Car(); // Create from blueprint
const yourCar = new Car();
Each object created from a class is called an instance.