Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

写出代码执行结果 #142

Open
lgwebdream opened this issue Jul 6, 2020 · 2 comments
Open

写出代码执行结果 #142

lgwebdream opened this issue Jul 6, 2020 · 2 comments
Labels
JavaScript teach_tag 头条 company 网易 company

Comments

@lgwebdream
Copy link
Owner

async function async1() {
  console.log("async1 start");
  await async2();
  console.log("async1 end");
}
async function async2() {
  console.log("async2");
}
console.log("script start");
setTimeout(function () {
  console.log("setTimeout");
}, 0);
async1();
new Promise(function (resolve) {
  console.log("promise1");
  resolve();
}).then(function () {
  console.log("promise2");
});
console.log("scripts end");
// 写出代码执行完成打印的结果
@lgwebdream lgwebdream added JavaScript teach_tag 头条 company 网易 company labels Jul 6, 2020
@lgwebdream
Copy link
Owner Author

扫描下方二维码,获取答案以及详细解析,同时可解锁800+道前端面试题。

@zhangxin-lab
Copy link

script start
async1 start
async2
promise1
scripts end
async1 end
promise2
setTimeout

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
JavaScript teach_tag 头条 company 网易 company
Projects
None yet
Development

No branches or pull requests

2 participants