# 01.数值类型
[toc]{type: "ol", level: [3]}
### 查看数据类型
```js
let a = 11;
let b = 11.11;
console.log(typeof a);
console.log(typeof b);
```
> number number
### 数据类型转换
> 如果传入的字符串的开头不是数字,会提示:NaN
> **NaN**{style="color:red"}: **Not a Number**{style="color:brown"} 不是数值
- 转为整型
```js
parseInt('1234');
```
- 转为浮点型
```js
parseFloat('12.34');
```