dev-zuo 技术日常
Github

JS数据类型有多少种,有哪些细节需要注意的?

这篇文章发布于 2020/12/15,归类于
标签:
js数据类型有多少种js数据类型js data type

ES3 有 5 种基本数据类型:null、undefined、boolean、number、string;1 种复杂数据类型 object。ES6+ 后面新增了两种基本数据类型:Symbol, Bigint。如果把函数 function 也算作一种数据类型,就是 9 种。

需要注意的是:

测试 demo 如下

var a = null,       // null
    b = undefined, // undefined 
    c = false, // boolean
    d = 1, // mumber
    e = "123", // string
    f = {}, // object
    g = Symbol("3"), // symbol
    h = BigInt(4), // 4n bigint
    i = function() {}; // function
[a, b, c, d, e, f, g, h, i].forEach(item => console.log(`typeof `, item, `: ${typeof item}`))
// typeof  null : object
// typeof  undefined : undefined
// typeof  false : boolean
// typeof  1 : number
// typeof  123 : string
// typeof  {} : object
// typeof  Symbol(3) : symbol
// typeof  4n : bigint
// typeof  ƒ () {} : function