Created
April 6, 2019 11:38
-
-
Save Shadowking1235/e87a6f882b7e825ebd62f36eb2411fe9 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/yunevut
This file contains hidden or 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"> | |
/* | |
Program explaning various attributes of m favourite Song. | |
*/ | |
var artist = "bob marley"; | |
var genre = "Reggage"; | |
var length = "417"; | |
var songName = "buffalo soldier"; | |
var album = "Confrontation"; | |
var released = "1983"; | |
var recorded = "1978"; | |
console.log(artist) | |
console.log(songName) | |
var bestSong = | |
{ | |
origin: "10thCavalryRegiment", | |
historical: true, | |
}; | |
var myfirstArray = ["artist = bob marley", | |
"genre = Reggage ", "length = 417 ", | |
"songName = buffalo soldier", | |
"album = Confrontation ", | |
"released = 1983", | |
"recorded = 1978"]; | |
console.log(myfirstArray); | |
console.log(bestSong.historical) | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">/* | |
Program explaning various attributes of m favourite Song. | |
*/ | |
var artist = "bob marley"; | |
var genre = "Reggage"; | |
var length = "417"; | |
var songName = "buffalo soldier"; | |
var album = "Confrontation"; | |
var released = "1983"; | |
var recorded = "1978"; | |
console.log(artist) | |
console.log(songName) | |
var bestSong = | |
{ | |
origin: "10thCavalryRegiment", | |
historical: true, | |
}; | |
var myfirstArray = ["artist = bob marley", | |
"genre = Reggage ", "length = 417 ", | |
"songName = buffalo soldier", | |
"album = Confrontation ", | |
"released = 1983", | |
"recorded = 1978"]; | |
console.log(myfirstArray); | |
console.log(bestSong.historical)</script></body> | |
</html> |
This file contains hidden or 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
/* | |
Program explaning various attributes of m favourite Song. | |
*/ | |
var artist = "bob marley"; | |
var genre = "Reggage"; | |
var length = "417"; | |
var songName = "buffalo soldier"; | |
var album = "Confrontation"; | |
var released = "1983"; | |
var recorded = "1978"; | |
console.log(artist) | |
console.log(songName) | |
var bestSong = | |
{ | |
origin: "10thCavalryRegiment", | |
historical: true, | |
}; | |
var myfirstArray = ["artist = bob marley", | |
"genre = Reggage ", "length = 417 ", | |
"songName = buffalo soldier", | |
"album = Confrontation ", | |
"released = 1983", | |
"recorded = 1978"]; | |
console.log(myfirstArray); | |
console.log(bestSong.historical) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Best.song