Skip to the content.

OOP Notes • 1 min read

Notes

The following is personal notes on Object Oriented Coding. A more concise hack on OOP can be found later on.

Objects

Objects group multiple values together that are related to each other. For example, all cars have wheels, color, and weight.

const car { wheels: 4; color: white; weight: 500kg; }