JavaScript

Javascript 객체로 Json 만들기 (object to json)

ITSkeleton 2020. 6. 5. 21:00
728x90
반응형

JSON.stringify() 함수를 이용해서 만듭니다

const text = {
    age: 29,
    name: "LichKing"
};

console.log(JSON.stringify(text));

 

728x90
반응형