---
title: getDataType - 返回数据类型
nav:
  title: 使用文档
  path: /lib
group:
  path: /
  order: 8
---

## getDataType

> 返回数据类型

Demo:

```tsx | pure
import { getDataType } from 'shengjs';

getDataType(1); // Number
getDataType('dingsheng'); // String
getDataType(new Date()); // Date
```
