前言
最近打算把js梳理一下,也留着自己看,这是一篇笔记性质的文章。
问题:typeof 会返回哪些值
问题:js数据类型转换
js的数据类型
在回答上面问题之前,首先我们得知道js 有哪些数据类型。
js的数据类型总分为两类,值类型和引用类型。
值类型包括:Number,String,Boolean
引用类型包括:Array,Object,函数
这里也不多介绍其他的了。
typeof的返回值
typeof undefined //undefined
typeof 123 // number
typeof 'abc' //string
typeof true //boolean
typeof {} //object
typeof [] //object
typeof null //object
typeof console.log //function