function getInformation(){
return this.title + ", " + this.category + ", " + this.playtime;
}
var movie1 = {
title: "The Shawshank Redemption",
category: "Drama",
playtime: "2 hours and 24 minutes",
getInformation: getInformation.bind(this)
}
var movie2 = {
title: "The dark knight",
category: "Action",
playtime: "2 hours and 32 minutes",
getInformation: getInformation.bind(this)
}
var movie3 = {
title: "The Return of the King",
category: "Fantasy",
playtime: "3 hours and 21 minutes",
getInformation: getInformation.bind(this)
}
var movie4 = {
title: "Forrest Gump",
category: "Drama",
playtime: "2 hours and 22 minutes",
getInformation: getInformation.bind(this)
}
document.getElementById("output").innerHTML += movie1.getInformation() + "\n" + movie2.getInformation() + "\n" + movie3.getInformation() + "\n" + movie4.getInformation();