var firstPromise = new Promise((resolve, reject) => { | |
setTimeout(() => { | |
resolve("This is Promise One...") | |
}, 3000) | |
}); | |
firstPromise.then((data) => { | |
console.log(`Promise Resolved with the Data: ${data}`) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment