Order exercise folders

Ordered the exercise folders by placing their numbers in their folder name
This commit is contained in:
Benjo Kho
2021-08-07 14:21:26 +08:00
parent ebdc86a349
commit 55cfb173d8
40 changed files with 0 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# Exercise 11 - Get the Titles!
You are given an array of objects that represent books with an author and a title that looks like this:
```javascript
const books = [
{
title: 'Book',
author: 'Name'
},
{
title: 'Book2',
author: 'Name2'
}
]
```
Your job is to write a function that takes the array and returns an array of titles:
```javascript
getTheTitles(books) // ['Book','Book2']
```
## Hints
- You should use a built-in javascript method to do most of the work for you!
+5
View File
@@ -0,0 +1,5 @@
const getTheTitles = function() {
};
module.exports = getTheTitles;
+18
View File
@@ -0,0 +1,18 @@
const getTheTitles = require('./getTheTitles')
describe('getTheTitles', () => {
const books = [
{
title: 'Book',
author: 'Name'
},
{
title: 'Book2',
author: 'Name2'
}
]
test('gets titles', () => {
expect(getTheTitles(books)).toEqual(['Book','Book2']);
});
});