Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 378 Bytes

File metadata and controls

19 lines (13 loc) · 378 Bytes

日期:2022/05/18 分类:JavaScript 题目:基本类型之间的转换

转换为number:

  1. parseInt、parseFloat、Number等一些显示的转换方法;
  2. 在字符串前面使用+符合即可将string转换为number

转换为boolean:

  1. Boolean方法
  2. !!运算符

转换为string:

  1. 使用+拼接一个空字符串
  2. String方法
  3. .toString()方法