Guest User

Untitled

a guest
Jan 21st, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function addToCollection(title, artist, year) {
  2. const recordToAdd = new Record(title, artist, year);
  3.  
  4. collection.push(recordToAdd);
  5.  
  6. return recordToAdd;
  7. }
Add Comment
Please, Sign In to add comment