例如,如果我在浏览器上有窗口滚动和鼠标移动监听器,每个监听器操纵多个元素(调用多个函数),那么异步调用函数是否有益?
async function hello(){
try{
method1(); // a bunch of DOM manipulation
method2(); // a bunch of other unrelated DOM manipulation
}
catch(err){}
}
VS
function hello(){
method1();
method2();
}
第一个会更快吗?如果我没有对我的方法使用'await',那么异步方法默认并行运行吗?