Appearance
typeof
"object"
"undefined"
"boolean"
Boolean
"number"
Number
"bigint"
BigInt
"string"
String
"symbol"
Symbol
从概念上讲, undefined 表示_值_的缺失, null 表示_对象_的缺失
undefined
null
变量是没有数据类型的,值才有数据类型
基本类型变量创建后不可变
函数传参是值传递(引用类型传递的是引用的地址值)