Skip to content

Instantly share code, notes, and snippets.

@gsampath127
Created February 11, 2020 16:05
Show Gist options
  • Save gsampath127/edb267cfca23558539106fb25833f181 to your computer and use it in GitHub Desktop.
Save gsampath127/edb267cfca23558539106fb25833f181 to your computer and use it in GitHub Desktop.
let newMobile = new Promise((resolve,reject)=>{
// searching for a new mobile (asynchronous operation)
let wishToBuy = true;
if(wishToBuy){
resolve({"Product":"iPhone 11","Price":"1L"});
}
else{
reject({"reason":"Mobile is not up to expectations"});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment