-
Notifications
You must be signed in to change notification settings - Fork 1
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
Больше деталей #3
Больше деталей #3
Conversation
Module2 task1
…ния индекса на один пункт
… массив нигде не используется и не проходит в свою очередь проверку линтерами.
Артем, привет. Извини, пришлось вставить console.log, передать туда полученный массив и исключить этот console.log из линтера. Так как у нас полученный в задании массив нигде не используется, то не проходило проверкой линтерами. Только так получилось отправить на проверку. |
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.
Чуть чуть давай переделаем, но в остальном отличная работа!
|
||
const createPhoto = (index = photoCounter()) => ({ | ||
id: `${index}`, | ||
url: `photos/${index}.jpg`, |
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.
у нас есть всего 6 фотографий, давай здесь вставим рандомное число от 1 до 6, а не index
js/main.js
Outdated
const createPhoto = (index = photoCounter()) => ({ | ||
id: `${index}`, | ||
url: `photos/${index}.jpg`, | ||
description: DESCRIPTIONS[index], |
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.
здесь тоже давай вставим рандомную фразу из этого списка. Index будем использовать для уникального id
…ие функций-счетчиков
🎓 Больше деталей