第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

代碼
提交代碼
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)
運(yùn)行結(jié)果