(()=>{ //定義一個函式約束 interface IFunc{ //括號裡為函式引數型別 //括號外為函式返回值型別 (name:string,age:number):boolean } //具體函式 const myFunc=function(name:string,age:number):boolean{ return age<18; } //呼叫函式 let res=myFunc('小甜甜',16) console.log(res) })()
(()=>{ //定義一個函式約束 interface IFunc{ //括號裡為函式引數型別 //括號外為函式返回值型別 (name:string,age:number):boolean } //具體函式 const myFunc=function(name:string,age:number):boolean{ return age<18; } //呼叫函式 let res=myFunc('小甜甜',16) console.log(res) })()