Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

191
Views
the task is to change the getEpisodeInfo() method of the PodcastEpisode class. More details-----

Still new to Javascript.. still learning..

the task is to change the getEpisodeInfo() method of the PodcastEpisode class, so that it'll return the episode duration in a more commonly accepted format.

 function getEpisodeInfo(){
return `${this.artist}. "${this.title}" - ${this.guest} ${this.getFormattedDuration()}`;
}
  

class PodcastEpisode {
  constructor(title, artist, guest,duration){
    this.title = title;
    this.artist = artist;
    this.guest = guest;
    this.duration = duration;
    this.getEpisodeInfo =getEpisodeInfo
    
  }

  like(){
      this.isLiked = this.isLiked;
  }
   getFormattedDuration() {
    const minutes = Math.floor(this.duration / 60); // the total number of minutes
    const seconds = this.duration % 60; // the remainder of the division by 60
    return `${minutes}:${seconds > 9 ?  seconds : "0" + seconds}`; 
}
 
}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

I guess you're just trying to move the getEpisodeInfo function into the Class.

But, you can't use the function keyword inside the class to define a method.

Here's the full code:

class PodcastEpisode {
    constructor(title, artist, guest, duration) {
        this.title = title;
        this.artist = artist;
        this.guest = guest;
        this.duration = duration;

    }

    like() {
        this.isLiked = true;
    }
    getFormattedDuration() {
        const minutes = Math.floor(this.duration / 60); // the total number of minutes
        const seconds = this.duration % 60; // the remainder of the division by 60
        return `${minutes}:${seconds > 9 ? seconds : "0" + seconds}`;
    }

    getEpisodeInfo() {
        return `${this.artist}. "${this.title}" - ${this.guest} ${this.getFormattedDuration()}`;
    }

}

Now you can create a PodcastEpisode Object and call podcast.getEpisodeInfo().

Let me know if that's not what you're trying to do.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!