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 的对象。
网友评论