/*** JS Homework #1 Name: Kofi Cypher Email: skcypher6@gmail.com ***/ var title = 'Young Days'; var artist = 'Vivian Paul'; var durationInSecs = 180; var genre = 'Afro Soul'; var album = { title: 'Young Life', yearReleased: '10-01-1999', label: 'FireTune Records', published: true, }; var stats = { rating: 7, airplay: 700, getAirplay : function(){ console.log('Played '+ this.airplay+ ' times across all airwaves.') } }; var otherTracks = ['A kiss from a rose', 'Mind Games', 'One more night','Old days','Watch Men']; console.log(title); console.log(artist); console.log(durationInSecs); console.log(genre); console.log(album); console.log(stats); console.log(otherTracks);