/* * This file contains the code details of a song called "Nuvvantene Istham" from the movice called Devadasu; */ // name of the movie var movieNmae = "Devadasu"; // name of the song var name = "Nuvvantene Istham"; // who is the author for the lyrics var lyrics = "Chandrabose"; // single name var singer = "Chakri"; // length of the song var length = "5:55"; // year of the movie that got released var released = 2016; // check whether this is a romantic movie var isRomanticAndComedyMovie = true; // details fo the starrers var starrer = { actor: "Ram", actress: "Ileana D'Cruz" }; // list of all songs in that movie var allSongs = [ "Bangaram", "Kshaminchu", "Nuvvantene Istham", "Adigi Adagaleka", "Kurrallu", "Telusa", "Oka Nestham", "Aye Babu", "Gundelni Pindedhi", "Idigidigo", "Mayadari Chinnodu" ]; console.log(movieNmae); console.log(name); console.log(lyrics); console.log(singer); console.log(length); console.log(starrer); console.log(allSongs);