摘要:
英文 中文翻译 Promise 承诺 resolve 解决 reject 故障 Promise Promise是一个对象,它代表了一个异步操作的最终完成或者失败。 本质上Promise是一个函数返回的对象,我们可以在它上面绑定回调函数,这样我们就不需要在一开始把回调函数作为参数传入这个函数了。 MD 阅读全文
摘要:
如果,一个程序这样执行: console.log("hello world!"); setTimeout(()=>{ console.log("执行setTimeout完毕。") },2000); 会输出这样的结果: $ node index.js hello world! 执行setTimeout 阅读全文