これはテキストです

--html--
<button id="hide-text">非表示</button>
<p id="text">これはテキストです</p>
--css--
p.is-hidden {
  display: none;
} 
--sript--
const hideButton = document.getElementById("hide-text");
const text = document.getElementById("text");

//ボタンをクリックしたら
hideButton.addEventListener('click', () => {
    text.classList.add("is-hidden")
})


classList.addメソッドとは