axios example
HTML
<script src="https://unpkg.com/[email protected]/dist/axios.js"></script>
JavaScript
async function getSomeDataWithAsync() {
const response = await axios.get("https://jsonplaceholder.typicode.com/todos/1");
console.log(response)
const { data } = response;
console.log(data);
}
getSomeDataWithAsync();