Created
          May 22, 2021 08:22 
        
      - 
      
 - 
        
Save Tenison/4ffbc30e3fd7bb29845a105ee81abc4a to your computer and use it in GitHub Desktop.  
    Songs Properties 
  
        
  
    
      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
    
  
  
    
  | 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