显示所有指定的元素。
使用展开运算符 (...) 和 Array.forEach() 来清除每个指定元素的 display 属性。
...
Array.forEach()
display
const show = (...el) => [...el].forEach(e => (e.style.display = ''));
show(...document.querySelectorAll('img')); // Shows all <img> elements on the page