Created
November 25, 2020 19:20
-
-
Save appoll/9db7fc67949896287b58c326a813a373 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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