function,

hide

FreeVue FreeVue Follow Apr 03, 2019 · 1 min read
hide
Share this

hide. 지정된 모든 요소를 숨깁니다.

spread 연산자 (…) 및 Array.forEach()를 사용하여 지정된 각 요소에 display: none을 적용합니다.

const hide = (...el) => [...el].forEach((e) => (e.style.display = 'none'))

// 예시
hide(...document.querySelectorAll('img')) // Hides all <img> elements on the page

[출처: http://30.surge.sh/]