Hard
What is the output of this code?
const promise= new Promise((resolve, reject)=>{
setTimeout(()=>resolve('Great passed the test'), 3000);
reject('You have an issue');
});
const getData= async()=>{
promised
.then(()=>console.log('In then'))
.finally(()=>console.log('In finally'));
await promise;
console. log('Here we go');
promise. catch(()=>console. log('In catch'));
};
getData();
Author: Anas ShamiStatus: PublishedQuestion passed 222 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Javascript