Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. Promise.reject(new Error("OOPS!")).then(function (value) {
  2. console.log(value); // Never called!
  3. }).catch(function (reason) {
  4. console.log(reason); // Error: OOPS!
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement