TS 定义函数的可选参数类型

index.ts

function foo(name: string, age?: number) {
  console.log(name + age);
}

foo("a"); // "aundefined"

posted on 2021-09-09 10:49  aisowe  阅读(4236)  评论(0编辑  收藏  举报

导航