const student = { name : 'Park', age : 30, address : 'Daejeon', printStudent : function(){ console.log(this.name, this.age, this.address); } }; const dataJson = JSON.stringify(student, null, 2); console.log(dataJson); JSON.stringify(객체) 이렇게 하면 됨. json형태의 문자열로 변화시켜주는 거임. 이게 좋은 점이 메소드는 다 삭제되서 나옴. JSON.stringify(객체, null, 2) 이렇게 하면 그러니까.. 마지막 인자 2는 들여쓰기 간격이다. 1만 써도 자동 줄바꿈 해 준다. JSON.stringify(객체, [..