TypeScript函数是一段可重复使用的代码块,用于执行特定的任务。它可以接收参数并返回值。TypeScript函数可以使用不同的语法来定义,包括函数声明,函数表达式和箭头函数。
函数声明:
function functionName(parameter1: type, parameter2: type): returnType { // function body }
函数表达式:
const functionName = function(parameter1: type, parameter2: type): returnType { // function body }
箭头函数:
const functionName = (parameter1: type, parameter2: type): returnType => { // function body }
函数可以使用关键字return
来返回值。如果函数没有返回值,则返回类型为void
。
例如,下面是一个简单的函数,它接收两个数字并返回它们的和:
function addNumbers(num1: number, num2: number): number { return num1 + num2; } const result = addNumbers(2, 3); console.log(result); // 输出 5