函数声明 function f1(){ console.log("我是一个函数") }; f1(); 函数表达式 var f2=function(){ console.log("我也是一个函数") }; f2(); react里 async f1(){ } f1=async()=>{ } 来源:https://www.cnblogs.com/huihuihero/p/11315355.html 标签 f1 async