Skip to content

Instantly share code, notes, and snippets.

@marcosrivasr
Created September 2, 2019 20:25
Show Gist options
  • Save marcosrivasr/e9207e2e23e80aba8c7257c4faa92ecc to your computer and use it in GitHub Desktop.
Save marcosrivasr/e9207e2e23e80aba8c7257c4faa92ecc to your computer and use it in GitHub Desktop.
const p = new Promise((resolve, reject) =>{
// cuerpo de la función
let x = 10;
if(x == 10){
resolve('La variable es igual a 10');
}else{
reject('Error: no se cumplió la condición');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment