StackOverflow 文件 JavaScript 教程 箭頭函式 顯式返回 顯式返回 Created: November-22, 2018 箭頭函式的行為與經典函式非常相似,因為你可以使用 return 關鍵字從它們顯式返回值; 只需將函式的主體包裹在花括號中,然後返回一個值: const foo = x => { return x + 1; } foo(1); // -> 2 箭頭用作建構函式