欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

你不知道的JavaScript之类型

程序员文章站 2022-07-14 14:25:34
...

1 内置类型 

null,undefined,boolean,string,number,object,symbol 除对象外其余为基本类型

object的子类型函数和数组,null是bug

typeof function a(...);  // function
typeof [1,2,3]; // object
typeof null; // object

2 js中变量没有类型,值才有。typeof运算符返回一个字符串

typeof typeof 42; // "string"

3 变量为持有值时为undefined。