async function abc() { const myPromise = new Promise(function(resolve, reject) { resolve("hello world"); }); let y= await myPromise; console.log(y); /*"hello world*/ }