1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 <script type="text/javascript"> 7 8 /* 9 * Null(空值)类型的值只有一个,就是null 10 * null这个值专门用来表示一个为空的对象 11 * 使用typeof检查一个null值时,会返回object 12 * 13 * Undefined(未定义)类型的值只有一个,就undefind 14 * 当声明一个变量,但是并不给变量赋值时,它的值就是undefined 15 * 使用typeof检查一个undefined时也会返回undefined 16 */ 17 var a = null; 18 19 var b = undefined; 20 21 console.log(typeof b); 22 23 </script> 24 </head> 25 <body> 26 </body> 27 </html>
原文地址:https://www.cnblogs.com/lvjianqun/p/10291690.html
时间: 2024-10-07 16:03:24