Skip to content

Instantly share code, notes, and snippets.

@chalkers
Created June 15, 2015 08:46
class Song {
constructor(title, artist, duration, isPlaying = false) {
this.title = title;
this.artist = artist;
this.duration = duration;
this.isPlaying = isPlaying;
}
start() {
this.isPlaying = true;
}
stop() {
this.isPlaying = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment