Skip to content

Instantly share code, notes, and snippets.

@Tenison
Created May 22, 2021 08:22
Show Gist options
  • Save Tenison/4ffbc30e3fd7bb29845a105ee81abc4a to your computer and use it in GitHub Desktop.
Save Tenison/4ffbc30e3fd7bb29845a105ee81abc4a to your computer and use it in GitHub Desktop.
Songs Properties
var Genre = "Pop";
var Artist = "John Legend";
var Title = "Love the way you are";
var Label = "Jam Def";
var Song_Producer = "Kim Sinta";
var Song_Writer = "John Legend"
var Extra = {
Year_Released : 2012,
Duration : '4.30 mins',
Rating : 4,
}
//Log to the screen output
console.log(Title);
console.log(Genre);
console.log(Artist);
console.log(Label);
console.log(Song_Producer);
console.log(Song_Writer);
console.log(Extra.Rating);
console.log(Extra.Duration);
console.log(Extra.Rating);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment