定义函数
// 定义数字转成字符串的函数
const numToStr = (num: number) => {
return num.toString()
}
// 定义字符串转成数组的函数
const strToNum = (str: string) => {
return Number(str)
}
console.log(numToStr(5242), strToNum('5'));
效果图
定义函数
// 定义数字转成字符串的函数
const numToStr = (num: number) => {
return num.toString()
}
// 定义字符串转成数组的函数
const strToNum = (str: string) => {
return Number(str)
}
console.log(numToStr(5242), strToNum('5'));
效果图
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。