博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mastered in EVENT LOOP
阅读量:6719 次
发布时间:2019-06-25

本文共 698 字,大约阅读时间需要 2 分钟。

setTimeout(() => {  console.log('I am the last one')}, 0);function count () {  for (var i = 0; i < 5; i++) {    ((i) => setTimeout(() => console.log(i), 1000 * i))(i)  }}(async () => {  console.log('Let\'s count')  await count()  await 1;  console.log('What are you doing? ')})()Promise.resolve().then(async () => {  await new Promise((resolve) => {    console.log('I am in a nest promise')    resolve(      (() => setTimeout(() => Promise.resolve('Do you think I will get there? ').then(res => {        console.log(res)      }), 0))()    )  }).then(() => {    console.log('Absolutely')  })})console.log('Script start')setTimeout(() => {  console.log('Script end')}, 2000)

What about your answer :)

转载地址:http://ddjmo.baihongyu.com/

你可能感兴趣的文章
Linux批量处理文件脚本
查看>>
MVC之Ajax异步操作
查看>>
pwn学习(1)
查看>>
复习常用算法_冒泡算法
查看>>
reading/writing files in Python
查看>>
LCA 树链剖分
查看>>
JSP下载txt 和 Excel两种文件
查看>>
写在年尾
查看>>
找水王
查看>>
路过Haxe
查看>>
从零开始学java (继承)
查看>>
[技]如何在 notepad++ 里面使用正则表达式进行替换
查看>>
为什么会有软件测试这一栏目?
查看>>
java初级笔记
查看>>
2.2.4 FrameLayout(帧布局)
查看>>
android 学习随笔八(异常处理总结)
查看>>
验证码
查看>>
SQL的几种连接:内连接、外连接(左连接、右连接、全连接)
查看>>
学习记录:《高性能javascript》【持续更新】
查看>>
布隆过滤器的改进及其应用实践
查看>>