技术js箭头函数js中箭头函数Xxcy2025-08-142025-08-14js 中的箭头函数📌 js函数的正常写法123const double=function(x){ return x*2;} 箭头函数123const double=(x)=>{ return x*2;}