美文网首页
js数据类型及ts数据类型

js数据类型及ts数据类型

作者: 胜过夜的美 | 来源:发表于2019-02-12 16:22 被阅读0次

    javascript 数据类型(js)

    基本类型: number、boolean、undefined、null
    引用类型:object、array、function
    特殊类型:string

    ps:
    es6中新增了let命令来声明变量、const命令声明一个只读的常量

    typescript数据类型(ts)

    number、string、boolean、void、null、undefined

    null 和 undefined 数据类型往往会让人感到混淆。null 和 undefined 不能用于引用变量的数据类型,它们只能作为值赋值给变量。

    然而,null 和 undefined 是不一样的 。使用 undefined 初始化的变量意味着该变量没有为其分配值或对象,而使用 null 则表示该变量被设置为值是 undefined 的对象。

    相关文章

      网友评论

          本文标题:js数据类型及ts数据类型

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