第一个箭头函数表示返回一个值,(what is return) 第二个箭头函数表示您想要定义的函数{define your function} 以获取更多描述,请遵循此示例:const post = text => (text) // return textconst post2 = text =>{ //define your function return (text)}console.log(post("hello post"));console.log(post("hello post2"));