Skip to content

Instantly share code, notes, and snippets.

@FelDev
Last active October 26, 2019 21:13
Show Gist options
  • Select an option

  • Save FelDev/94320f8c7fcd35acfd043d0bf22f9854 to your computer and use it in GitHub Desktop.

Select an option

Save FelDev/94320f8c7fcd35acfd043d0bf22f9854 to your computer and use it in GitHub Desktop.
let aPromise = new Promise(function(resolve, reject) {});
console.log(typeof aPromise) // object
console.log(aPromise.constructor.name) // Promise
console.log(aPromise) // Promise { <pending> }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment