Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. const p = new Promise((resolve, reject) => {
  2. const age = 17;
  3. if (age > 18) {
  4. resolve("I am old enough to ...");
  5. } else {
  6. reject("What a shame");
  7. }
  8. });
  9.  
  10. p.then(function(msg) {
  11. console.log(msg + " drink !");
  12. }).catch(function(error) {
  13. console.log(error);
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement