美文网首页
JS 数据类型

JS 数据类型

作者: 我有一条小黑狗 | 来源:发表于2020-09-16 15:11 被阅读0次

    在 JavaScript 中有 6 种不同的数据类型:

        string

        number

        boolean

        object

        function

        symbol

    3 种对象类型:

        Object

        Date

        Array

    2 个不包含任何值的数据类型:

        null

        undefined


    类型案例

    typeof "John"                // 返回 string

    typeof 3.14                  // 返回 number

    typeof false                 // 返回 boolean

    typeof [1,2,3,4]             // 返回 object

    typeof {name:'John', age:34} // 返回 object

    typeof undefined           // undefined

    typeof null                     // object

    null === undefined         // false

    null == undefined         // true

    相关文章

      网友评论

          本文标题:JS 数据类型

          本文链接:https://www.haomeiwen.com/subject/fdvcyktx.html