const getJSON = async (url, callback) => { const response = await fetch(url); const data = await response.json(); callback(data) } ...
確定! 回上一頁