async function getUserAsync(name) { let response = await fetch(`https://api.github.com/users/${name}`); let data = await response.json() ...
確定! 回上一頁