“JS Promise API” Ответ

Обещание JavaScript

let promise = new Promise(function(resolve, reject){
  try{
  	resolve("works"); //if works
  } catch(err){
    reject(err); //doesn't work
  }
}).then(alert, console.log); // if doesn't work, then console.log it, if it does, then alert "works"
Unusual Unicorn

JS Promise API

const fetchData = () => {
  fetch('https://api.github.com').then(resp => {
    resp.json().then(data => {
      console.log(data);
    });
  });
};
Puzzled Puffin

JS обещание

const executorFunction = (resolve, reject) => {
  if (someCondition) {
      resolve('I resolved!');
  } else {
      reject('I rejected!'); 
  }
}
const myFirstPromise = new Promise(executorFunction);
Anthony Smith

Ответы похожие на “JS Promise API”

Вопросы похожие на “JS Promise API”

Больше похожих ответов на “JS Promise API” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования