# 类型转换

执行下面的代码，将字符串类型强制显式转换为数值类型。

```javascript
let str = '233';
console.log(str, typeof str);
console.log(Number(str), typeof Number(str));
```

