Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created September 18, 2018 16:15
Show Gist options
  • Save sevperez/9b2b11d331a1962515a37ff27108c516 to your computer and use it in GitHub Desktop.
Save sevperez/9b2b11d331a1962515a37ff27108c516 to your computer and use it in GitHub Desktop.
function announce(collection) {
console.log(collection.description);
collection.items.forEach(function(element) {
console.log(element);
});
}
var favoriteCities = {
items: ["Copenhagen", "Kampala", "Montevideo"],
description: "My favorite cities around the world:",
};
announce(favoriteCities);
// Logs:
// "My favorite cities around the world:"
// "Copenhagen"
// "Kampala"
// "Montevideo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment