Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLETITA BUZEA
Full Stack JavaScript Techdegree Student 4,247 PointsTask #8 : remove the '.extra' <div>
// Task 7
const btnDelete = document.createElement('button'); btnDelete.textContent = 'Delete';
const extra = document.querySelector('.extra'); extra.appendChild(btnDelete);
// 8. Why not write it like this, isn't it easier?
btnDelete.addEventListener('click', () => {
extra.remove();
});
1 Answer
Jason Larson
8,361 PointsI would say that your solution is valid. As Guil said in the video, his is only one solution. There are always other ways to accomplish the same task. Some are easier, some are more complicated, some are faster, and some are simply easier to read. I don't remember if he covered the remove()
method in the course, but if not, then that would certainly be one reason he may have chosen to not use that method.
LETITA BUZEA
Full Stack JavaScript Techdegree Student 4,247 PointsYes, he did cover that in the ''JavaScript and the DOM" course. Thank you, I was just curious!
Nicolás Melgarejo
14,154 PointsNicolás Melgarejo
14,154 PointsAgree