typeof运算符

typeof返回值的类型:

1. 'undefined'  :undefined

2. 'boolean' 

3. 'string' 

 4. 'number' :NaN

 5. 'object': 在对null、arry、object进行typeof运算时都会返回,其中null属于js历史遗留问题

 6. 'function'

 

typeof既可以检查常量的数据类型,也可以检查变量数据类型

 

typeof运算符在进行运算时,比加减乘除的优先级要高

 例 : let x = 10;

typeof x +10;

typeof (x +10);

上一篇:性能测试——jmeter性能测试——重点—核心——线程组、Ramp-Up Period、Loop Count 次采样


下一篇:软件工程 - chapter01 - 软件过程