Appearance
function getType(value: any): string
获取数据类型
const type = getType('你好'); type === 'String';
value
any
任意值
string
类型字符串, 如'String'、'Map'等