ts 函数声明及泛型函数
函数声明函数声明对参数类型, 返回值类型定义,没有返回值定义为void//必传x,y并且类型都为number,返回值为布尔function fun1(x:number,y:number):boolean{ return x>y}fun1(1,3)没有返回值定义为void://不返回值,类型为voidfunction fun1(x:number,y:number):void{ console.log(x,y)}参数可传可不传 并添加默认值://x必传,y为可传可不传 默认值