본문 바로가기

IT/Javascript

[javascript] 오브젝트 로그 확인[object Object]

json 형태의 object 변수인 testVal를

alert(testVal); 로 찍으면 [object Object] 라고 나온다.

 

testVal의 속 내용을 알고 싶다면

 

alert(JSON.stringify(testVal));

라고 찍어주면 됨.