Guest User

Untitled

a guest
Jan 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. var duration = 3.35;
  2. var artist = "George Benson";
  3. var songname = "The Greatest Love Of All";
  4. var album = "Weekend in L.A.";
  5. var genre = "jazz";
  6. var number_of_people_in_the_band = 7;
  7. var guitar = "George Benson";
  8. var violin = "X";
  9. var vocals = "George Benson & X";
  10. var piano = "X";
  11. var movie = "The Greatest" ;
  12. var amount_of_money_invested = 123;
  13. var amount_of_time_recording = 123;
  14. var versions_of_the_song_recorded = 7;
  15. var author = "George Benson";
  16. var composer = "Michael Masser";
  17. var song_writter = "Linda Creed, Michael Masser"
  18.  
  19. console.log(duration);
  20. console.log(artist);
  21. console.log(songname);
  22. console.log(album);
  23. console.log(genre);
  24. console.log(number_of_people_in_the_band);
  25. console.log(guitar);
  26. console.log(vocals);
  27. console.log(violin);
  28. console.log(piano);
  29. console.log(movie)
  30. console.log(amount_of_money_invested);
  31. console.log(amount_of_time_recording);
  32. console.log(versions_of_the_song_recorded);
  33. console.log(author);
  34. console.log(composer);
  35. console.log(song_writter);
Add Comment
Please, Sign In to add comment