Skip to content

【Promise第三题】下面代码的输出是什么?

Posted on:2022年1月9日 at 22:20
const promise = new Promise((resolve, reject) => {
  console.log(1);
  console.log(2);
});
promise.then(() => {
  console.log(3);
});
console.log(4);

过程分析

结果:

1 2 4
原文转自:https://fe.ecool.fun/topic/214b0a32-c111-4c6c-aad6-4ecc14bd904a