sandbox-node/async-await/index.js

14 lines
345 B
JavaScript

async function fetchDataFromApi() {
console.log('fetchDataFromApi() start...');
fetch('https://v2.jokeapi.dev/joke/Programming?type=single')
.then(res => res.json())
.then(json => console.log(json.joke));
console.log('fetchDataFromApi() done.');
};
fetchDataFromApi().then(() => {
console.log('Finished fetching data');
});