Basic JavaScript - Record Collection

Tell us what’s happening:
Describe your issue in detail here.
i am really lost…even with the hints, i dont know where to begin
someone pleaseeee help

  **Your code so far**
// Setup
const recordCollection = {
2548: {
  albumTitle: 'Slippery When Wet',
  artist: 'Bon Jovi',
  tracks: ['Let It Rock', 'You Give Love a Bad Name']
},
2468: {
  albumTitle: '1999',
  artist: 'Prince',
  tracks: ['1999', 'Little Red Corvette']
},
1245: {
  artist: 'Robert Palmer',
  tracks: []
},
5439: {
  albumTitle: 'ABBA Gold'
}
};

// Only change code below this line
function updateRecords(records, id, prop, value) {
return records;
}

updateRecords(recordCollection, 5439, 'artist', 'ABBA');
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Record Collection

Link to the challenge:

What have you tried so far? It looks like you reset all of the code.

This is a tricky challenge, and a big part of the challenge is understanding what your are supposed to do and breaking it down into smaller pieces.

i dont even know how to start honestly…i need directions

I can’t write the solution for you - that’s against the rules.

You have a series of tasks

  1. Your function must always return the entire record collection object.
  2. If prop isn’t tracks and value isn’t an empty string, update or set that album’s prop to value.
  3. If prop is tracks but the album doesn’t have a tracks property, create an empty array and add value to it.
  4. If prop is tracks and value isn’t an empty string, add value to the end of the album’s existing tracks array.
  5. If value is an empty string, delete the given prop property from the album.

Lets look at one at a time.

The first one already happens, so look at point 2.

How can you check if the variable prop is equal to "tracks"?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.