우당탕탕 좌충우돌 개발일기
[object Object] 출력하기 본문
자바스크립트에서 Json 형태의 object 변수인 person이라는 변수가 있다.
💻 예제 코드
<html>
<body>
</body>
<script>
const person = {};
person.firstName = "John";
person.lastName = "Doe";
person.age = 50;
person.eyeColor = "blue";
console.log("객체 출력"+ person);
</script>
</html>
person에 어떤 값이 들어있나 보려고 console.log를 찍어보니
[object Object]
이렇게 나온다.
그럴 땐, person을 JSON.stringify으로 감싸준다.
console.log(JSON.stringify(person));
[출력 결과값]
{"firstName":"John","lastName":"Doe","age":50,"eyeColor":"blue"}
짝짝짝
반응형
'Programming > 삽질기록' 카테고리의 다른 글
Apexchart 데이터 0일때 차트에 나타내기/감추기(chart show/hide) (2) | 2024.10.17 |
---|---|
스프링부트 SecureRandom 예제 (0) | 2023.11.20 |
[Git] Another git process seems to be running in this repository : 에러해결 (0) | 2023.08.11 |
PSQLException: The column index is out of range: 5, number of columns: 4 에러 해결 (0) | 2023.07.28 |
인텔리제이에서 Git Branch 생성(브랜치 생성) (0) | 2023.07.28 |