async function getIPAddress () { const url = 'https://httpbin.org/ip' const req = await fetch(url) const json = await req.json() const data = await json.origin console.log(data) } getIPAddress()
async function getIPAddress () { const url = 'https://httpbin.org/ip' const req = await fetch(url) const json = await req.json() const data = await json.origin console.log(data) } getIPAddress()