Typescript 函數相關類型
1 | function returnValue( ):string{ |
Typescript 空
//空
1 | function sayHello( ):void{ |
Typescript 參數類型
1 | function sumValue(value1:number,value2:number ){ |
函數類型
1 | let myFunc; |
1 | function returnValue( ):string{ |
//空
1 | function sayHello( ):void{ |
1 | function sumValue(value1:number,value2:number ){ |
1 | let myFunc; |