Skip to content

Instantly share code, notes, and snippets.

@alibalbars
Created July 30, 2021 17:03
Show Gist options
  • Save alibalbars/6450592f8b2f5602734231de5bc2db81 to your computer and use it in GitHub Desktop.
Save alibalbars/6450592f8b2f5602734231de5bc2db81 to your computer and use it in GitHub Desktop.
Js Promise
let promise = new Promise(function (resolve, reject) {
resolve('basarili!');
reject(new Error('hata alindi!'))
})
promise.then(
function (result) {
console.log(result);
},
function (error) {
console.log(error);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment