Untitled
Anonymous
javascript
01/12/2022 4:53 PM
272 B
17
Indexable
async function getUsers() {
let response = await
fetch("http://127.0.0.1:8080/users")
let data = await response.json()
return data;
}
getUsers().then((data)=> console.log(data))Editor is loading...