Untitled
Anonymous
javascript
09/21/2021 3:15 PM
328 B
13
Indexable
var newVar = null;
async function getData() {
await fetch('http://localhost:8085/api/v1/movies?page=1&limit=20')
.then(response => response.json())
.then(data => {
newVar = data
})
}
getData().then(()=>{console.log(newVar)})Editor is loading...