Object Oriented JavaScript DHTML



First Object

function Song (title) {
   this.title = title;
}
function printTitle() {
   alert(this.title);
}
var someSong = new Song("Title");
Song.prototype.print = printTitle;
var anotherSong = new Song("Another Title");
anotherSong.print();