노드 Node
<div id="category"> 카테고리 <strong> 도구리 </strong> 좋아요 </div>
const el = document.getElementById("category");
const text = el.textContext; // 서브트리가 있어도 그 내용까지 다 노출
console.log(text); //카테고리 도구리 좋아요Last updated
<div id="category"> 카테고리 <strong> 도구리 </strong> 좋아요 </div>
const el = document.getElementById("category");
const text = el.textContext; // 서브트리가 있어도 그 내용까지 다 노출
console.log(text); //카테고리 도구리 좋아요Last updated