title | tags |
---|---|
show |
browser,css,beginner |
Shows all the elements specified.
- Use the spread operator (
...
) andArray.prototype.forEach()
to clear thedisplay
property for each element specified.
const show = (...el) => [...el].forEach(e => (e.style.display = ''));
show(...document.querySelectorAll('img')); // Shows all <img> elements on the page