📜  ts 中的箭头函数 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:22.657000             🧑  作者: Mango

代码示例2
// ES6: With arrow function  
var getResult = (username: string, points: number): string => {  
  return `${ username } scored ${ points } points!`;  
};

getResult('joyous jackal' , 100);