Skip to content

Instantly share code, notes, and snippets.

@lettda
Created June 15, 2016 15:11
Show Gist options
  • Save lettda/26925d9e722ebfcbb0221c331d3b0140 to your computer and use it in GitHub Desktop.
Save lettda/26925d9e722ebfcbb0221c331d3b0140 to your computer and use it in GitHub Desktop.
Record collection
// Setup
var collection = {
2548: {
album: "Slippery When Wet",
artist: "Bon Jovi",
tracks: [
"Let It Rock",
"You Give Love a Bad Name"
]
},
2468: {
album: "1999",
artist: "Prince",
tracks: [
"1999",
"Little Red Corvette"
]
},
1245: {
artist: "Robert Palmer",
tracks: [ ]
},
5439: {
album: "ABBA Gold"
}
};
// Keep a copy of the collection for tests
var collectionCopy = JSON.parse(JSON.stringify(collection));
// Only change code below this line
function updateRecords(id, prop, value) {
if (value === "") {
delete collection[id][prop];
} else if (value !== "" && prop !== "tracks") {
collection[id][prop] = value;
} else if (prop === "tracks" && value !== "") {
collection[id].tracks.push(value);
} else if (collection[id].tracks !== []) {
collection[id].tracks.push([]);
}
return collection;
}
// Alter values below to test your code
updateRecords(5439, "tracks", "ABBA");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment