Typescript에서 class를 json 문자열로 바꾸는 방법에 대한 고민. 일단 평범?하게.. 별 문제없이 성공 class MyTest { first = 1; second = "It's my test!"; third: string[] = ["Hello", "World"]; } console.log(JSON.stringify(new MyTest())); 이렇게 하니까 무한루프를 탄다. class MyTest { first = 1; second = "It's my test!"; third: string[] = ["Hello", "World"]; toJSON(): string { return JSON.stringify(this); } } const o = new MyTest(); console.log(..