add task solution#1808
Conversation
yana-longstocking
commented
Apr 30, 2026
- DEMO LINK
- THIS INSTRUCTIONS
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
Your solution is approved. All core functional requirements are met: the code correctly creates table rows with all 6 required cells (name, gender, born, died, age, century), finds the .dashboard table using document.querySelector, and appends the rows properly. Age calculation (person.died - person.born) and century calculation (Math.ceil(person.died / 100)) are both implemented correctly. The console.log mentioned in the task description was guidance for debugging during development and is not required in the final submission. Your implementation is clean, functional, and complete.
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Footnotes
| // eslint-disable-next-line no-console | ||
| console.log(people); // you can remove it | ||
| const dashboard = document.querySelector('.dashboard'); | ||
|
|
There was a problem hiding this comment.
The task description mentions using console.log to inspect the people array for debugging. Consider adding this to help with development.