We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
js一共分为两种数据类型,分别是原始数据类型和引用类型 引用类型:Object 原始数据类型:Undefined、Null、Number、String、Boolean、Symbol(ES6)、BigInt(ES10) typeof(undefined)-->undefined typeof(null)-->object typeof(number)-->number typeof(string)-->string typeof(boolean)-->boolean typeof(Symbol())-->symbol
The text was updated successfully, but these errors were encountered:
No branches or pull requests
js一共分为两种数据类型,分别是原始数据类型和引用类型
引用类型:Object
原始数据类型:Undefined、Null、Number、String、Boolean、Symbol(ES6)、BigInt(ES10)
typeof(undefined)-->undefined
typeof(null)-->object
typeof(number)-->number
typeof(string)-->string
typeof(boolean)-->boolean
typeof(Symbol())-->symbol
The text was updated successfully, but these errors were encountered: