亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
interface Clothes { color: string; size: string; price: number; } function getClothesInfo(clothes: Clothes) { console.log(clothes.price) } let myClothes: Clothes = { color: 'black', size: 'XL', price: 98 } getClothesInfo(myClothes)
運行結果