Skip to content

Instantly share code, notes, and snippets.

@appoll
Created November 25, 2020 19:20
Show Gist options
  • Save appoll/9db7fc67949896287b58c326a813a373 to your computer and use it in GitHub Desktop.
Save appoll/9db7fc67949896287b58c326a813a373 to your computer and use it in GitHub Desktop.
let books = [
{
pages: 200,
year: 2020,
author: {
firstName: "Paul",
lastName: "Anton"
},
language: "DE"
},
{
pages: 230,
year: 2020,
author: {
firstName: "Oliver",
lastName: "G"
},
format: "DE"
},
]
// E3
// 3.1 Write a function that increases the year of all books by 1 (optional: arrow function)
// 3.2 Convert all author's first names to lowercase
// 3.3 Convert all author's last names to uppercase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment