📅  最后修改于: 2022-03-11 15:03:41.637000             🧑  作者: Mango
// server.js
function square(x) {
return new Promise(resolve => {
setTimeout(() => {
resolve(Math.pow(x, 2));
}, 2000);
});
}
square(10).then(data => {
console.log(data);
});