Question from the Javascript test

Write a Javascript code that uses Promises, then, catch and finally.

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 213 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!