“js kalau begitu” Kode Jawaban

janji tangkapan

//create a Promise
var p1 = new Promise(function(resolve, reject) {
  resolve("Success");
});

//Execute the body of the promise which call resolve
//So it execute then, inside then there's a throw
//that get capture by catch
p1.then(function(value) {
  console.log(value); // "Success!"
  throw "oh, no!";
}).catch(function(e) {
  console.log(e); // "oh, no!"
});
POG

js kalau begitu

doSomething()
.then(function(result) {
  return doSomethingElse(result);
})
.catch(failureCallback);
Fahim Foysal

.sebuah javascript

var doSome = new Promise(function(resolve, reject){
    resolve('I am doing something');
});

doSome.then(function(value){
    console.log(value);
});
Borma

Metode javascript kemudian ()

promiseObject.then(onFulfilled, onRejected);
SAMER SAEID

Jawaban yang mirip dengan “js kalau begitu”

Pertanyaan yang mirip dengan “js kalau begitu”

Lebih banyak jawaban terkait untuk “js kalau begitu” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya