Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
I am approving your solution because it correctly fulfills the core functional requirements. Your main.js script iterates over the people array, creates a table row per person, and generates six cells containing name, gender/sex, born, died, computed age (died - born), and computed century (Math.ceil(died / 100)), then appends them to the .dashboard table as required. This means the main data transformation and DOM manipulation logic is in place and working as specified.
One minor improvement you could make is to remove the leftover console.log(people) and any eslint-disable comments once you finish debugging, so your code stays clean and linting can help you catch issues automatically. Also, make sure you’ve run the recommended test commands locally (like npm run test) and verified they pass, even if they weren’t shown in the PR. Overall, the implementation is clear, straightforward, and matches the task description—nice work completing the requirements.
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
<your_account>with your Github username in the link