<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>

<script id="jsbin-javascript">
/*
 * 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);
</script>



<script id="jsbin-source-javascript" type="text/javascript">/*
 * 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);</script></body>
</html>