// Promise new Promise((resolve, reject) => { resolve(123); }) .then((res) => { console.log(res) //123 }) .catch(() => {})