Search⌘ K
AI Features

Challenge: Visitor Pattern

Explore how to implement the Visitor design pattern to filter Rock music from a music library in JavaScript. Learn to create classes for Song, RockMusicVisitor, and MusicLibrary that work together to produce a Rock playlist by using object-oriented programming principles within behavioral design patterns.

Problem statement

In this challenge, you need to implement the visitor pattern to separate ...