Created
January 2, 2019 07:12
-
-
Save jp-resource/bbb201b37372966b04883a86f26a1491 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/jibaqus
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"> | |
/*Micheal Jackson Song. | |
He himself also producer of this song. | |
*/ | |
//song information | |
"use strict"; | |
var song = "Black or White", | |
album = "Dangerous", | |
artist = "M J", | |
yearReleased = 1991, | |
genre = "Pop rock", | |
durationInSeconds = 325, | |
label = "Epic Records", | |
format = { | |
"cassette": "singles", | |
"twoSides": true | |
}, | |
videoAvailable = true, | |
songWriters = ["Michael Jackson", "Bill Bottrell"], | |
producers = ["Michael Jackson", "Bill Bottrell"], | |
premieredOn = "MTV, VH1"; | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">/*Micheal Jackson Song. | |
He himself also producer of this song. | |
*/ | |
//song information | |
var song = "Black or White", | |
album = "Dangerous", | |
artist = "M J", | |
yearReleased = 1991, | |
genre = "Pop rock", | |
durationInSeconds = 325, | |
label = "Epic Records", | |
format = { | |
"cassette" : "singles", | |
"twoSides" : true | |
}, | |
videoAvailable = true, | |
songWriters = ["Michael Jackson", "Bill Bottrell"], | |
producers = ["Michael Jackson", "Bill Bottrell"], | |
premieredOn = "MTV, VH1" | |
; | |
</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
/*Micheal Jackson Song. | |
He himself also producer of this song. | |
*/ | |
//song information | |
"use strict"; | |
var song = "Black or White", | |
album = "Dangerous", | |
artist = "M J", | |
yearReleased = 1991, | |
genre = "Pop rock", | |
durationInSeconds = 325, | |
label = "Epic Records", | |
format = { | |
"cassette": "singles", | |
"twoSides": true | |
}, | |
videoAvailable = true, | |
songWriters = ["Michael Jackson", "Bill Bottrell"], | |
producers = ["Michael Jackson", "Bill Bottrell"], | |
premieredOn = "MTV, VH1"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment