Practice using logical operators!

PHOTO EMBED

Sat Jun 03 2023 09:24:50 GMT+0000 (Coordinated Universal Time)

Saved by @AsterixCode #undefined

class Episode {

  constructor(title, duration, minutesWatched) {

    this.title = title;

    this.duration = duration;

    // Add logic here

    // ======================

    

    

    

    // ======================

  }

}

​

let firstEpisode = new Episode('Dark Beginnings', 45, 45);

let secondEpisode = new Episode('The Mystery Continues', 45, 10);
content_copyCOPY

https://codepen.io/nicolaspatschkowski/pen/yLNENYB