Joeyrodrigues92
2/1/2017 - 11:50 PM

Constructor function

//this is a constructor function
var Song = function(title, artist){ //arguments refer to second title and second artist
    this.title = title;
    this.artist = artist;
}