API 取得 JSON
fetch("data.json")
.then(res => res.json())
.then(data => console.log(data));
回到主頁