Search⌘ K
AI Features

Challenge: Unidirectional Associations

Explore how to implement unidirectional non-functional associations by enhancing a JavaScript class model. Learn to link movies with directors and actors using object-oriented principles and methods.

We'll cover the following...

Problem statement

This challenge requires you to complete the following tasks:

  1. Make an OO class model that’s derived from the given design model by replacing associations with corresponding reference properties.
  2. Make a JavaScript class model that is
...