📅  最后修改于: 2022-03-11 14:48:16.792000             🧑  作者: Mango
function formatPrice(Symbol: any) {
return function (value: any) {
const price = (value / 100);
return `${Symbol}${price}`;
};
}
const PriceLabel = formatPrice('£');
console.log(PriceLabel(2499))