Created
December 27, 2018 14:12
-
-
Save bvenkatr/66b17db3ce7d2bcaa281c9b5e7a80cf1 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/gaheduz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment