Advertisement
-Annie-

NowPlaying

May 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function play(array) {
  2.     "use strict"
  3.     let track = array[0];
  4.     let artist = array[1];
  5.     let duration = array[2];
  6.  
  7.     console.log(`Now Playing: ${artist} - ${track} [${duration}]`);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement