혹시, 객체 내용을 이쁘게 줄바꿈 출력시키려면?
본문
<p id="demo"></p>
<script>
const json = JSON.stringify(document); // 객체 -> JSON 문자열로 변환
document.write(json); // JSON 문자열 출력
</script>
결과값:
{"location":{"ancestorOrigins":{},"href":"http://localhost/","origin":"http://localhost","protocol":"http:","host":"localhost","hostname":"localhost","port":"","pathname":"/","search":"","hash":""}}
위처럼 한줄로 나오는데, 객체 요소별로 줄바꿈 시켜 이쁘게 출력시키는 법 아시나요?
한줄로 출력되니 객체 구조 파악하기 좀 거시기 하네요.
!-->
답변을 작성하시기 전에 로그인 해주세요.