-
Notifications
You must be signed in to change notification settings - Fork 15
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
base: main
Are you sure you want to change the base?
FirstChallenge #13
Conversation
There was a problem hiding this 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; |
There was a problem hiding this comment.
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 => { |
There was a problem hiding this comment.
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']); |
There was a problem hiding this comment.
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.
Challenge 1