在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
定义规则:
function searchFriend(age:number):string{ return `找到了${age}岁的小姐姐` } var age:number = 18 var result:string = searchFriend(age) console.log(result) // 找到了18岁的小姐姐 function searchFriend(age:number,stature?:string):string{ let yy:string = '' yy = `找到了${age}岁` if (stature!=undefined) { yy = yy + stature } return `${yy}的小姐姐` } var result:string = searchFriend(22, '大长腿') console.log(result) // 找到了22岁大长腿的小姐姐 原文地址:http://jspang.com/post/typescript.html?tdsourcetag=s_pcqq_aiomsg |
请发表评论