Medium
What is the output of the following JavaScript code?
function fetchData() {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve("Data fetched!");
}, 1000);
});
}
async function displayData() {
const data = await fetchData();
console.log(data);
}
displayData();
console.log("After displayData call");
Author: Vincent CotroStatus: PublishedQuestion passed 2703 times
Edit
31
Community EvaluationsNo one has reviewed this question yet, be the first!
9
Use spread operator to split an array into two arrays in Javascript10
The certificate variable is not attainable outside the if loop6
Print the number of countries in the array travel.7
What can be said about ECMAScript?21
Fix the following Javascript loop:70
Understanding the differences between `map()` and `forEach()` methods in JavaScript6
Write a switch statement that checks if a person can go down a slide based on their weight and height.