Language Basics JavaScript DHTML







function Song(artist,length,title) {
    this.artist = artist;
    this.length = length;
    this.title = title;
}
song1 = new Song("A","3:30","title");

Songs