Skip to content

Instantly share code, notes, and snippets.

@jp-resource
Created January 2, 2019 07:12
Show Gist options
  • Save jp-resource/bbb201b37372966b04883a86f26a1491 to your computer and use it in GitHub Desktop.
Save jp-resource/bbb201b37372966b04883a86f26a1491 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/jibaqus
<!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>
/*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