Skip to content

Instantly share code, notes, and snippets.

@azizkale
Last active October 30, 2020 06:59
Show Gist options
  • Save azizkale/ab96e52f02310435b9d96d1fb4cef42f to your computer and use it in GitHub Desktop.
Save azizkale/ab96e52f02310435b9d96d1fb4cef42f to your computer and use it in GitHub Desktop.
04-Promise&serTimeoutFunction
isAuthenticated() {
const promise = new Promise((resolve, reject) => {
setTimeout(() => {
resolve(this.loggedIn);
}, 700)
});
return promise;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment