Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FirstChallenge #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

north-horse
Copy link

Challenge 1

Copy link
Contributor

@Nefsen402 Nefsen402 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work!

const { publication_date, description, name } = collection;
const { results } = resource;
const created = moment(publication_date, 'YYYY-MM-DD').unix();
let { publication_date, description, name } = collection;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this changed to let? const is preferrable.

created,
description,
name,
results.map(item => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Although a problem with the original code, the usage of map is inappropriate and forEach should be used instead.

let collectionIds = result['results'];
// console.log(result['results'].length);
for(let i = 0;i<collectionIds.length;i++){
// console.log(collectionIds[i]['collection_id']);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't leave around random commented out code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants