Search⌘ K

Make an OO Class Model

Understand how to transform information design models by eliminating explicit associations. Learn to convert bidirectional and unidirectional associations into reference properties to create consistent and navigable object-oriented class models in plain JavaScript.

We'll cover the following...

If we want to obtain an OO class model, we need to eliminate all classes that have reference properties that represent explicit associations. This is because classical OO programming languages don’t support explicit associations as first-class citizens.

The basic procedure

We begin our association elimination procedure with an ...