JSON.stringify() 使用方法
const user = { name: "Albert", age: 25 };
const jsonString = JSON.stringify(user);
console.log(jsonString);
回到主頁