JavaScript 类型转换是面试重点,由于javascript是一门弱类型编程语言,因此他的类型可能在你意料之外的发生了变化
javascript中经常需要显式的进行类型转换,常用的有Number() 转换为数字, String() 转换为字符串, Boolean() 转换为布尔值。
JavaScript 数据类型
在 JavaScript 中有 6 种不同的数据类型:
- string
- number
- boolean
- object
- function
- symbol
3 种对象类型:
- Object
- Date
- Array
2 个不包含任何值的数据类型:
- null
- undefined
typeof 操作符
你可以使用 typeof 操作符来查看 JavaScript 变量的数据类型。
<script>
document.write( typeof "John" // 返回 string
+ "<br>" + typeof 3.14 // 返回 number
+ "<br>" + typeof NaN // 返回 number
+ "<br>" + typeof false // 返回 boolean
+ "<br>" + typeof [1,2,3,4] // 返回 object
+ "<br>" + typeof {name:'John', age:34} // 返回 object
+ "<br>" + typeof new Date() // 返回 object
+ "<br>" + typeof function () {} // 返回 function
+ "<br>" + typeof myCar // 返回 undefined (如果 myCar 没有声明)
+ "<br>" + typeof null // 返回 object
)
</script>
请注意:
- NaN 的数据类型是 number
- 数组(Array)的数据类型是 object
- 日期(Date)的数据类型为 object
- null 的数据类型是 object
- 未定义变量的数据类型为 undefined
如果对象是 JavaScript Array 或 JavaScript Date ,我们就无法通过 typeof 来判断他们的类型,因为都是 返回 object。
constructor 属性
constructor 属性返回所有 JavaScript 变量的构造函数。
<script>
document.write("John".constructor // 返回函数 String() { [native code] }
+ "<br>" + (3.14).constructor // 返回函数 Number() { [native code] }
+ "<br>" + false.constructor // 返回函数 Boolean() { [native code] }
+ "<br>" + [1,2,3,4].constructor // 返回函数 Array() { [native code] }
+ "<br>" + {name:'John', age:34}.constructor // 返回函数 Object() { [native code] }
+ "<br>" + new Date().constructor // 返回函数 Date() { [native code] }
+ "<br>" + function () {}.constructor // 返回函数 Function(){ [native code] }
)
</script>
你可以使用 constructor 属性来查看对象是否为数组 (包含字符串 "Array"):
使用constructor属性判断数组实例
<script>
data = [1,2,3]
function isArray(myArray) {
return myArray.constructor.toString().indexOf("Array") > -1;
}
document.write("data类型: "+ typeof(data)+"<br>")
document.write("data是数组类型: "+ isArray(data))
</script>
你可以使用 constructor 属性来查看对象是否为日期 (包含字符串 "Date"):
用constructor 属性判断日期实例
<script>
function isDate(myDate) {
return myDate.constructor.toString().indexOf("Date") > -1;
}
d = new Date()
document.write("d类型: "+ typeof(d)+"<br>")
document.write("d是日期类型: "+ isDate(d))
</script>
JavaScript 类型转换
JavaScript 变量可以转换为新变量或其他数据类型:
- 通过使用 JavaScript 函数
- 通过 JavaScript 自身自动转换
将数字转换为字符串
全局方法 String() 可以将数字转换为字符串。
该方法可用于任何类型的数字,字母,变量,表达式:
数字转换为字符串实例1
<script>
document.write(String(123)) // 将数字 123 转换为字符串并返回
document.write("<br>")
document.write(String(100 + 23)) // 将数字表达式转换为字符串并返回
document.write("<br>")
x = 10
document.write(String(x)) // 将变量 x 转换为字符串并返回
</script>
Number 方法 toString() 也是有同样的效果。
toString实例
<script>
x = 10
document.write(x.toString())
document.write("<br>")
document.write((123).toString())
document.write("<br>")
document.write((100 + 23).toString())
</script>
在 Number 方法 章节中,你可以找到更多数字转换为字符串的方法:
方法 | 描述 |
---|---|
toExponential() | 把对象的值转换为指数计数法。 |
toFixed() | 把数字转换为字符串,结果的小数点后有指定位数的数字。 |
toPrecision() | 把数字格式化为指定的长度。 |
将布尔值转换为字符串
全局方法 String()
可以将布尔值转换为字符串。
String(false) // 返回 "false"
String(true) // 返回 "true"
Boolean 方法 toString()
也有相同的效果。
false.toString() // 返回 "false"
true.toString() // 返回 "true"
在条件语句的条件表达式判断中,字符串自动转为布尔值,如果是空字符串为false
,其他为true
将日期转换为字符串
Date()
返回字符串。
全局方法 String() 可以将日期对象转换为字符串。
String(new Date())
// 返回 "Wed Feb 09 2022 16:03:48 GMT+0800 (中国标准时间)"
Date 方法 toString() 也有相同的效果。
date实例
<script>
date = new Date()
date.toString()
document.write(date)
</script>
在 Date 方法 章节中,你可以查看更多关于日期转换为字符串的函数:
方法 | 描述 |
---|---|
getDate() | 从 Date 对象返回一个月中的某一天 (1 ~ 31)。 |
getDay() | 从 Date 对象返回一周中的某一天 (0 ~ 6)。 |
getFullYear() | 从 Date 对象以四位数字返回年份。 |
getHours() | 返回 Date 对象的小时 (0 ~ 23)。 |
getMilliseconds() | 返回 Date 对象的毫秒(0 ~ 999)。 |
getMinutes() | 返回 Date 对象的分钟 (0 ~ 59)。 |
getMonth() | 从 Date 对象返回月份 (0 ~ 11)。 |
getSeconds() | 返回 Date 对象的秒数 (0 ~ 59)。 |
getTime() | 返回 1970 年 1 月 1 日至今的毫秒数。 |
将字符串转换为数字
全局方法 Number() 可以将字符串转换为数字。
字符串包含数字(如 "3.14") 转换为数字 (如 3.14).
空字符串转换为 0。
其他的字符串会转换为 NaN (不是个数字)。
Number("3.14") // 返回 3.14
Number(" ") // 返回 0
Number("") // 返回 0
Number("99 88") // 返回 NaN
在 Number 方法 章节中,你可以查看到更多关于字符串转为数字的方法:
方法 | 描述 |
---|---|
parseFloat() | 解析一个字符串,并返回一个浮点数。 |
parseInt() | 解析一个字符串,并返回一个整数。 |
一元运算符 +
Operator + 可用于将变量转换为数字:
转换实例1
<script>
var y = "5"; // y 是一个字符串
var x = + y; // x 是一个数字
document.write(x + y)
</script>
如果变量不能转换,它仍然会是一个数字,但值为 NaN (不是一个数字):
转换实例2
<script>
var y = "John" // y 是一个字符串
var x = + y // x 是一个数字 (NaN)
document.write(x + y)
</script>
将布尔值转换为数字
全局方法 Number() 可将布尔值转换为数字, true转换为1, false转换为0。
Number(false) // 返回 0
Number(true) // 返回 1
将日期转换为数字
全局方法 Number() 可将日期转换为数字,值为时间戳。
<script>
d = new Date();
document.write(Number(d)) // 返回 1604568027739
document.write("<br>")
//相当于日期方法 getTime()
d = new Date();
document.write(d.getTime()) // 返回 1604568027739
</script>
自动转换类型
当 JavaScript 尝试操作一个 "错误" 的数据类型时,会自动转换为 "正确" 的数据类型。
以下输出结果不是你所期望的:
<script>
document.write(5 + null) // 返回 5 null 转换为 0
document.write("<br>")
document.write("5" + null) // 返回"5null" null 转换为 "null"
document.write("<br>")
document.write("5" + 1) // 返回 "51" 1 转换为 "1"
document.write("<br>")
document.write("5" - 1) // 返回 4 "5" 转换为 5
</script>
自动转换为字符串
当你尝试输出一个对象或一个变量时 JavaScript 会自动调用变量的 toString() 方法:
<script>
myVar = {name:"Fjohn"} // toString 转换为 "[object Object]"
document.write(myVar)
document.write("<br>")
myVar = [1,2,3,4] // toString 转换为 "1,2,3,4"
document.write(myVar)
document.write("<br>")
myVar = new Date() // toString 转换为 "Fri Jul 18 2021 09:08:55 GMT+0800"
document.write(myVar)
document.write("<br>")
//数字和布尔值也经常相互转换:
myVar = 123 // toString 转换为 "123"
document.write(myVar)
document.write("<br>")
myVar = true // toString 转换为 "true"
document.write(myVar)
document.write("<br>")
myVar = false // toString 转换为 "false"
</script>
转换规则总结
1. 其他类型转换为布尔类型
""、空字符串、null
、undefined
, 0
转为布尔值:flase
,
其余转换为true
2.其他类型转换为数字类型
""、空字符串
、null
、false
转换为数字: 0
, true
转为 1
,
完全由数字组成的字符串转为对应的数字,
其余的转为NaN
3. 转换示例一览表
原始值 | 转换为数字 | 转换为字符串 | 转换为布尔值 |
---|---|---|---|
false | 0 | "false" | false |
true | 1 | "true" | true |
0 | 0 | "0" | false |
1 | 1 | "1" | true |
"0" | 0 | "0" | true |
"000" | 0 | "000" | true |
"1" | 1 | "1" | true |
NaN | NaN | "NaN" | false |
Infinity | Infinity | "Infinity" | true |
-Infinity | -Infinity | "-Infinity" | true |
"" | 0 | "" | false |
"20" | 20 | "20" | true |
"python-xp.com" | NaN | "python-xp.com" | true |
[ ] | 0 | "" | true |
[20] | 20 | "20" | true |
[10,20] | NaN | "10,20" | true |
["python-xp.com"] | NaN | "python-xp.com" | true |
["python-xp.com","猿变"] | NaN | "python-xp.com,猿变" | true |
function(){} | NaN | "function(){}" | true |
{ } | NaN | "[object Object]" | true |
null | 0 | "null" | false |
undefined | NaN | "undefined" | false |
讨论区