美文网首页
无标题文章

无标题文章

作者: 凸小布 | 来源:发表于2017-02-22 09:38 被阅读2次
    • 值类型
    • string / number / boolean / null / undefined

    • 引用类型
    • Object / Function / Array / Date / String / Number / Boolean

    区别:在于空间中存储的信息
    值类型:存储的是具体的数据
    引用类型:存储的是一个引用(reference)[地址],该引用指向内存中的一块儿空间,这块儿空间存储着具体的数据
    举例:
    01(变量的名称) --> 一个苹果(具体的数据)
    02(变量的名称) --> 苹果在超市的第二排货架的第一列(地址)


    <script>
        var a = 10;
        var obj = {
            'name' : 'hello',
            'age' : 20,
            dog : {
                'name' : '旺财',
                'color': 'green'
            }
        }
    </script>
    
    空间中的存储

    相关文章

      网友评论

          本文标题:无标题文章

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