let getJSON = async(url) => { let response = await fetch(url); let JSON = await response.json(); console.log(JSON) } getJSON('https://randomuser.me/api/') ...
確定! 回上一頁