1. windows运行docker报错Windows Hypervisor is not presentDocker Desktop is unable to detect a Hypervisor.Hardware assisted virtualization and data execution protection must be enabled in the BIOS.
Docker Desktop - Windows Hypervisor is not presentDocker D…
定义
async的定义
在mdn中,async的定义为: async function 关键字可用于定义表达式中的异步函数。
其实很简单,就是async关键字后面定义的函数会被转化为一个异步的函数
如下所示: function fn1(){return 同步}async function asyncFn(){return 异步}console.log(fn1())con…