js数据类型转换

Posted Forever77

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js数据类型转换相关的知识,希望对你有一定的参考价值。

1.通过typeof查看数据类型

typeof 3.14                   // 返回 number
typeof NaN                    // 返回 number
typeof "John"                 // 返回 string 
typeof false                  // 返回 boolean
typeof [1,2,3,4]              // 返回 object
typeof {name:‘John‘, age:34}  // 返回 object
typeof new Date()             // 返回 object
typeof function () {}         // 返回 function
typeof myCar                  // 返回 undefined(如果myCar没有声明)
typeof undefined              // 返回 undefined
typeof null                   // 返回 object

typeof的返回只有number、string、boolean、object、function、undefined五种类型

如果要查看的是数组、对象、日期、或者null,返回值都是object,无法通过typeof来判断他们的类型

 

2.通过constructor属性返回构造函数

(1234).constructor                   //function Number() { [native code] }
NaN.constructor                      //function Number() { [native code] }
‘hello‘.constructor                  //function String() { [native code] }
false.constructor                    //function Boolean() { [native code] }
[1,2,3,4].constructor                //function Array() { [native code] }
{name:‘John‘, age:34}.constructor    //function Object() { [native code] }
new Date().constructor               //function Date() { [native code] }
function(){}.constructor             //function Function() { [native code] }

constuction属性返回的构造函数有七种,unll和undefined没有构造函数

 

3.自动类型转换

数字 + 字符串 : 将数字转化为字符串,再与后面字符串的进行拼接

数字 + 布尔值:true转化为1,false转化为0,再与数字进行相加

字符串 + 布尔值:按照字符串进行拼接

document.getElementById("demo").innerhtml = myVar;
myVar = {name:"Fjohn"}  // toString 转换为 "[object Object]"
myVar = [1,2,3,4]       // toString 转换为 "1,2,3,4"
myVar = new Date()      // toString 转换为 "Fri Jul 18 2014 09:08:55 GMT+0200"

 

4.数字、布尔值、日期强制转化为字符串

String(123)、(123).toString()都可将数字转化为字符串

String(true)、false.toString()都可将数字转化为字符串

String(new Date()) 、(new Date()).toString()都可将日期转化为字符串

 

5.数字类型的字符串、布尔值、日期强制转化为数字

Number(‘3.14‘)可将字符串3.14转化为数字3.14,Number(‘‘)返回0,Number("99 88")返回NaN  

Number(false)返回0,Number(true) 返回1

d = new Date(),Number(d)和d.getTime()可将日期转换为数字

parseInt( ) 将浮点数、字符串类型的数字、以数字开头的字符串转化为整数,转换失败时会得到NaN

parseFloat()强制转换为浮点数

 

6.eval():将字符串强制转换为表达式并返回结果,例如eval(‘1+4‘)=5

 

以上是关于js数据类型转换的主要内容,如果未能解决你的问题,请参考以下文章

js常用代码片段(更新中)

Relay.js 没有正确解析组合片段

对象不能从 DBNull 转换为其他类型。

java中把json怎么转换成数组?

深入浅出JavaScript中的隐式转换

JavaScript笔试题(js高级代码片段)