Skip to content

Instantly share code, notes, and snippets.

@mortegac
Last active July 11, 2017 03:00
Show Gist options
  • Save mortegac/ea5f68bc8988b93c9ebfbc2d37d0703e to your computer and use it in GitHub Desktop.
Save mortegac/ea5f68bc8988b93c9ebfbc2d37d0703e to your computer and use it in GitHub Desktop.
Ejemplo-Promesas
//DEFINICION DE PROMESA
var p1 = new Promise((resolve, reject) => {
if (true)
throw new Error("rejected!"); // same as rejection
else
resolve(4);
});
//LLAMADA
p1.then((val) => val + 2)
.then((val) => console.log("got", val))
.catch((err) => console.log("error: ", err.message));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment