JSON.parse() 使用方法
const jsonText = '{"name":"Albert","age":25}';
const obj = JSON.parse(jsonText);
console.log(obj.name);
回到主頁