Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 383 Bytes

show.md

File metadata and controls

16 lines (12 loc) · 383 Bytes
title tags
show
browser,css,beginner

Shows all the elements specified.

  • Use the spread operator (...) and Array.prototype.forEach() to clear the display 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